实用的 Git 命令分享

发布于 2021-12-20 23:34:21 字数 813 浏览 1175 评论 0

commit forgotten file

$ git commit -m 'initial commit'
$ git add forgotten_file
$ git commit --amend

revert comit and add to another branch

Imagine you commit file on wrong branch(staging) but not push yet

$ git log --oneline; // find the commit hash is LAST_COMMIT_HASH
$ git checkout dev
$ git cherry branch LAST_COMMIT_HASH
$ git push
$ git checkout staging
$ git revert LAST_COMMIT_HASH
$ git push // the LAST_COMMIT_HASH would be replaced by a newer hash

delete local and remote branch

$ git branch -d staging-backup // local
Deleted branch staging-backup (was c1aabf0).

$ git push --delete origin import // remote
To code.aliyun.com:tsp-fe/tsp-web-fe.git
 - [deleted]         import

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

緦唸λ蓇

暂无简介

0 文章
0 评论
612 人气
更多

推荐作者

醉城メ夜风

文章 0 评论 0

远昼

文章 0 评论 0

平生欢

文章 0 评论 0

微凉

文章 0 评论 0

Honwey

文章 0 评论 0

qq_ikhFfg

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文