What is the appropriate way to update a large number of txt format data files in Git repository instead of using sourcetree staging files manually?

StackOverflow https://stackoverflow.com//questions/25026617

  •  21-12-2019
  •  | 
  •  

Domanda

I am just wondering there is any way that I can update a large number of .txt format data files to a git repository? In sourcetree, I have to stage every file by hand which is very painful.

I am also wondering if there are some ways that I can just provide a link of the files or something like in gradle so that I can just change the link and the git will update the files automatically instead of uploading all the files each time.

I need some guidance and directions of solving the problem. I know there must be several ways to solve the same problem but my purpose is not to bring any debates or conflicts. Thank you all in advance!

È stato utile?

Soluzione

Using git add / will add all changes to the index.

The / is a special path specification that represents the root of the working tree in git. You can also use any path specification that your operating system supports (as long as it stays inside the working tree).

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top