科研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

上传项目

# 提交代码到暂存区
git add .
# 查看代码修改情况
git status
# 提交暂存区代码到本地git仓库
git commit -m "updata"
# 提交本地git仓库代码到远程仓库
git push

查看历史提交

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 

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

你可能感兴趣的:(科研Day系列,git,github)