安装好git后:
1、配置邮箱
git config --global user.name ymbok
git config --global user.email ymbok@ymbok.com
2、生成SSH
ssh-keygen -t rsa -C ymbok@ymbok.com
3、将SSH添加到Git服务器上
4、下载代码,根据你的项目地址
git clone "ssh://ymbok@project"
5、更新代码
git pull
6、添加文件到暂存区
git add README hello.java
7、提交代码
git commit -m "11111111111111"
8、上传代码
git push origin HEAD:refs/for/master
9、查看记录
git log
10、回退提交
git reset --soft commit ID
本站内容来源于作者发布和网络转载,如有版权相关问题请及时与我们取得联系,我们将立即删除。