当前位置:   article > 正文

科研Day4 -- git命令

科研Day4 -- git命令

用户信息设置

# 设置用户名
git config --global user.name "username"
# 设置邮箱
git config --global user.email "youremail"
# 查看设置
git config --global --list
# 检查 SSH 能否连接到 github
ssh -T git@github.com
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

上传项目

# 提交代码到暂存区
git add .
# 查看代码修改情况
git status
# 提交暂存区代码到本地git仓库
git commit -m "updata"
# 提交本地git仓库代码到远程仓库
git push
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

查看历史提交

git log
# 查看历史记录的简洁版本
git log --oneline
# 开启拓扑图选项,查看分支、合并
git log --graph
# 逆向显示日志
git log --reverse --oneline
# 查找指定用户的提交日志
git log --author=nightluo --oneline -5
# 隐藏合并提交
git log --no-merges
# 查找指定日期的日志
git log --before={3.weeks.ago} --after={2022-10-01} --no-merges
git log --since/--until
# more: http://git-scm.com/docs/git-log

# 查看指定文件的修改记录
git blame <file>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18

github官方文档:https://docs.github.com/en/get-started
1、Managing remote repositories:https://docs.github.com/en/get-started/getting-started-with-git/managing-remote-repositories#switching-remote-urls-from-ssh-to-https
2、Creating a personal access token:https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/705434
推荐阅读
相关标签
  

闽ICP备14008679号