笔记 git 使用

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/zhdzxc123/article/details/78951736

1.仓库转移代

git clone http://url

git push --mirror http://192.xxxxx

git clone http://192.xxxx

2.commit

git commit -m "modify"

3.push

git push origin master

4.记住git账号和密码

git config credential.helper store

5.比较2个不能版本, 并打包

git diff version1 version2 --name-only | xargs zip ../name.zip


猜你喜欢

转载自blog.csdn.net/zhdzxc123/article/details/78951736