git 记住用户名和密码

down voteaccepted

You can store your credentials using the following command

$ git config credential.helper store
$ git push http://example.com/repo.git
Username: <type your username>
Password: <type your password>

from  https://stackoverflow.com/questions/11403407/git-asks-for-username-everytime-i-push

学到的git actions

git init

git pull url

git push

git push --all

以及

git status

git add -A

git status

git commit

git push

原文地址:https://www.cnblogs.com/liyongguo/p/7097025.html