为了账号安全,请及时绑定邮箱和手机立即绑定

git

标签:
Java

git新增

git init
git add 要上传的文件
git commit -m "上传说明"
git remote add origin https://github.com/dir/xx.git
git push -u origin master

 

git本地更新

git add *
git commit -m “更新说明”
git pull  //拉取一次代码同步下
git push origin master

 

git其他电脑更新

git clone https://github.com/dir/xx.git
cd dir
<在其他电脑修改完>
git add*    /也可以只填写要更新的文件
git commit -m “更新”
git pull 
git push origin master

git删除历史记录

运行 git checkout --orphan latest_branch
添加所有文件git add -A
提交更改git commit -am "commit message"
删除分支git branch -D master
将当前分支重命名git branch -m master
最后,强制更新存储库。git push -f origin master


点击查看更多内容
1人点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消