首先第一步:使用git add ./将要上传的代码加入缓存区
git add ./
第二步: 使用git commit 命令将暂存区内容添加到本地仓库中
git commit -m "add codepage"
第三步 使用git push将代码上传到仓库中
git push origin master
如何拉取gitcode上的代码呢? 命令如下:
git pull
注意:如果是第一次配置git。还需要创建sshkey。
然后利用git init创建本地仓库
git init "代码库的名字"
本地库的创建还需要
//告诉git要跟踪的文件
git add *.c
git add README
//项目的说明
git commit -m '初始化项目版本'
将gitcode上的数据克隆到本地 repo为gitcode的网址,directory为本地目录
git clone
git使用遇到的一些问题
1、error: Your local changes to the following files would be overwritten by merge:XXXX 错误的解决
在没有pull就修改本地的代码可能会出现上述的问题。
解决方法 1:保留本地最新修改,并拉取仓库中忘记 pull 的代码到本地 :
三个命令:
git stash
git pull origin master
git stash pop
解决方法 2:放弃本地代码,新修改的都不要了,退回上一版本,再拉取代码到本地。
git reset --hard
git pull origin master