3
Using git, you can create the file .gitignore
, not to send specific files during the git push origin
. I would like to perform the reverse, upload all files except one specific file.
I checked the documentation of git-pull, however, I found nothing related.
How to update git pull origin
all files from a git repository, except one specific file?
The last sentence did not match the rest of the question. You want to ignore a folder except a file?
– Jéf Bueno
By "carry" you mean lower, like during a git clone?
– Melissa
When I mean loading, I mean updating a repository
git pull origin
, however there are files that I would not like to update.– Vitor Subhi
See if this is what you want https://answall.com/questions/193951/como-parar-de-observar-as-mudan%C3%a7as-de-um-determined-file/193957#193957
– Jéf Bueno
I believe that there is no way to do this in one command. A workaround would be: 1. git stash -- seu_file # puts your file in a queue 2. git pull # downloads everything 3. git stash pop # returns your file
– Paulo Marques