2023-10-14 更改
安装 git 后,首先设置用户帐户:
使用私人邮箱提交,注意,需要允许在命令行暴露邮箱(邮箱设置处)。
git config --global user.name "XXX"
git config --global user.email "XXX@XXX.com"
然后,在后续操作中,如果是命令行涉及远程操作,如 git remote add origin https://gitee.com/yourname/test01.git,或在已有的项目代码 git/config 中,有:
[remote "origin"]
url = https://gitee.com/yourname/test01.git
都会触发 git 询问 gitee 的帐号和密码。
========
本方法适用于已经在本地有代码,需要上传到 gitee 的情况。
1。在 gitee 上创建一个仓库,比如叫:test01;
2。假定本地待上传的工程源码在路径:~/test01 下;
3。打开 Remote(终端),执行以下命令:
cd ~/test01
git init
git touch README.md
git add .
git commit -m "first commit"
git remote add origin https://gitee.com/yourname/test01.git
git push -u origin master
4。结束。
20231031补充:https://gitee.com/yourname/test01.git 是用户在 Gitee 上手动创建的仓库,而非在客户端远程创建。
========
补充:
1。使用私人邮箱提交,注意,需要允许在命令行暴露邮箱(邮箱设置处)。
git config --global user.name "XXX"
git config --global user.email "XXX@XXX.com"
2。如果需要删除远程仓库的关联:
git remote rm origin
========
补充20210305
1。如果不慎对某个路径进行了 git init ,这么取消 git init:
rm -rf .git
2。查看 git
git status
3。忽略文件
// 创建 .gitignore
// 向 .gitignore 写入字符串 XXXX/YYY/,/代表这是一个路径
echo XXXX/ > .gitignore
// 再次 git status ,将不显示路径 XXX
// rm .gitignore
// 删除 .gitignore
// 再次 git status ,将显示路径 XXX
// 可以先设置 .gitignore ,然后 git init
========
补充20210716
已经建远程库的情况下,不要再次:git remote add origin https://gitee.com/yourname/test01.git
如果不慎 add. 的时候包含了不需要的文件,那就修改 .gitignore,然后重新 add.无效。
充要步骤如下:
git add .
git commit -m "first commit"
git push -u origin master