赞
踩
# 在gitignore中添加忽略项之后,代码入库的时候仍旧跟踪的问题,由于缓存中存在的已经跟踪导致
# 修改gitignore文件
# git rm --cached [filename]
git status # 显示当前文件状态
git reset HEAD [文件名称]
git checkout -- [文件名称]
git log # 查看版本号
git reset --hard c503cffa099332911d4fce2fc1399cb4bc3ba9d6 # 回滚到指定版本
git push -f
# 其实也可以提交本地的版本进行覆盖
git add .
git commit -m "version"
git push -u origin master
git add .
git commit -m "first commit"
git push -u origin master
对于GitHub上已创建远程仓库
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/your_github_name/project_name.git
git push -u origin master
git remote add origin https://github.com/path
git push -u origin main
git stash
git pull
git stash pop
Linux或者Mac下方法:
cd ~
vim .git-credentials
https://{username}:{password}@github.com
eg: https://yangwang:123456@github.com
git config --global credential.helper store
[credential]
helper = store
rm -rf “/Users/$(whoami)/Library/Application Support/BeyondCompare/registry.dat”
找到git配置文件路径
windows: ~/.gitconfig
在文件中添加以下代码,需要找到自己的Beyond Compare 4安装路径
window
[diff]
tool = bc4
[difftool]
prompt = false
[difftool "bc4"]
cmd = "\"C:\\Program Files\\Beyond Compare 4/bcomp.exe\" \"$LOCAL\" \"$REMOTE\""
[merge]
tool = bc
[mergetool]
prompt = false
[mergetool "bc4"]
cmd = "\"C:\\Program Files\\Beyond Compare 4/bcomp.exe\" \"$LOCAL\" \"$REMOTE\" \"$BASE\" \"$MERGED\""
git config --global user.name "Git账号" git config --global user.email "Git邮箱"
打开 Git Bash,输入如下命令,然后连续按三个回车即可:
ssh-keygen -t rsa -C "your_email@example.com"
注:生成的SSH私钥路径 /c/Users/chenjs/.ssh/id_rsa 后面要用到。
配置 ssh-agent 程序使用 SSH key
在后台启动 ssh-agent
eval $(ssh-agent -s)
将SSH私钥添加到 ssh-agent
ssh-add /c/Users/chenjs/.ssh/id_rsa
先复制SSH公钥的完整内容(/c/Users/chenjs/.ssh/id_rsa.pub)
clip < /c/Users/chenjs/.ssh/id_rsa.pub
ssh -T git@github.com
注:如果提示中的用户名是你的,说明SSH key已经配置成功。这里只要配置成功即可。
注意:若最后windows生成SSH 错误
bash: $'\302\226': command not found
一般是由于在 生成秘钥 的时候在命令前面存在空格造成。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。