git的使用-将本地文件 push 到gitee
-
创建 gitee 账号
-
到 /root/[Ubuntu下的用户] 新建一个.ssh 文件
74 mkdir .ssh 75 chmod 755 .ssh 76 touch .ssh/authorized_keys 77 chmod 644 .ssh/authorized_keys 78 cd .ssh/
-
查看秘钥,并将秘钥输入到 gitee 中(需要到根目录下查看)
78 cd .ssh/ 79 ls 80 ssh-keygen -t rsa -C "2*****@qq.com" 81 ls 82 ll 83 cd /root/.ssh 84 ls 85 cat id_rsa.pub root@DESKTOP-L29FDBC:/home/qiangd/.ssh# cd root@DESKTOP-L29FDBC:~# cd .ssh/ root@DESKTOP-L29FDBC:~/.ssh# ls id_rsa id_rsa.pub root@DESKTOP-L29FDBC:~/.ssh# cat id_rsa.pub ssh-rsa ********= 25****@qq.com root@DESKTOP-L29FDBC:~/.ssh#
-
接着新建一个仓库,然后在本地新建一个文件夹用来放代码,进入该文件夹,进行相关的初始化,此时如果使用
git clone https://gitee.com/g****c-data-struct.git
就可以将 gitee 上的文件下载下来,但是 本文要讲的是上传本地文件到 gitee 的仓库里 ,于是接着
-
在该文件夹下新建文件夹,此时如果使用git add . ,然后git commit -m “***” ,是上传不了文件的
root@DESKTOP-L29FDBC:/mnt/c/Users/SZU_DQ/Desktop/C-Data-Struct# git add . root@DESKTOP-L29FDBC:/mnt/c/Users/SZU_DQ/Desktop/C-Data-Struct# git commit -m "hashtable" On branch master nothing to commit, working tree clean root@DESKTOP-L29FDBC:/mnt/c/Users/SZU_DQ/Desktop/C-Data-Struct# git commit -m "hashtable" On branch master nothing to commit, working tree clean root@DESKTOP-L29FDBC:/mnt/c/Users/SZU_DQ/Desktop/C-Data-Struct# git add hashtable root@DESKTOP-L29FDBC:/mnt/c/Users/SZU_DQ/Desktop/C-Data-Struct# git commit -m "hashtable" On branch master nothing to commit, working tree clean
因为创建的是空文件夹,里面没有代码文件,gitee 上同步不了
于是就在新建的文件夹下新建C文件
root@DESKTOP-L29FDBC:/mnt/c/Users/SZU_DQ/Desktop/C-Data-Struct# git add .
root@DESKTOP-L29FDBC:/mnt/c/Users/SZU_DQ/Desktop/C-Data-Struct# git commit -m "hashtable"
[master 0fb029d] hashtable
1 file changed, 7 insertions(+)
create mode 100644 hashtable/hashtable.c
root@DESKTOP-L29FDBC:/mnt/c/Users/SZU_DQ/Desktop/C-Data-Struct# git push origin master
Username for 'https://gitee.com': guojinqianfan
Password for 'https://guo***@gitee.com':
Enumerating objects: 5, done.
Counting objects: 100% (5/5), done.
Delta compression using up to 8 threads
Compressing objects: 100% (3/3), done.
Writing objects: 100% (4/4), 417 bytes | 417.00 KiB/s, done.
Total 4 (delta 1), reused 0 (delta 0)
remote: Powered by GITEE.COM [GNK-6.0]
To https://gitee.com/guo****n/base-on-c-data-struct.git
89db4b8..0fb029d master -> master
root@DESKTOP-L29FDBC:/mnt/c/Users/SZU_DQ/Desktop/C-Data-Struct#
这里需要注意的是 一定要使用 git push origin master 这个命令才能成功,我一开始是使用 git push 就一直同步不了。现在就能在 gitee 上看到相关的文件了(**在使用 git push origin master之前都要进行git add . git commit -m “xxxxxx” ,之前我也是忘了git commit -m “xxxxx”,然后就直接git push不行)
我的分支信息:
root@DESKTOP-L29FDBC:/mnt/c/Users/SZU_DQ/Desktop/C-Data-Struct# git branch -a
* master
remotes/origin/master
root@DESKTOP-L29FDBC:/mnt/c/Users/SZU_DQ/Desktop/C-Data-Struct# git remote -v
origin https://gitee.com/guo***/***-data-struct.git (fetch)
origin https://gitee.com/guo***/***-c-data-struct.git (push)
root@DESKTOP-L29FDBC:/mnt/c/Users/SZU_DQ/Desktop/C-Data-Struct#
其他的一些错误通过百度都能得到解决,下面提供一些我用到的链接