20201023 learning-Git command line to submit UI automation code

Git installation:

Good documentation reference: https://www.cnblogs.com/ximiaomiao/p/7140456.html

Git upload code:

git pull pulls the code from the code base

git status  -View the current warehouse status

 

git commit -m "xxxx remarks when submitting code"

git push--- submit code

git add -A saves all changes
git add. Saves new additions and modifications, but does not include deletion
git add -u saves modifications and deletions, but does not include new files.
So use git add -A by default

Git GUI interface submission method:

Good references:

https://blog.csdn.net/weelyy/article/details/82823798

git_three_rigon.png-212.9kB(Quoted from the article: https://blog.csdn.net/weelyy/article/details/82823798 )

Guess you like

Origin blog.csdn.net/weixin_43533308/article/details/109249757