Git部分使用命令

git add .  将项目所有文件添加到仓库中

git commit -m “注释”

git commit --amend -m ”注释“ 修改注释

git pull origin master

git push -u origin master 


你可能感兴趣的:(操作系统)