如何向gitee上传代码

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

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值