由于最近svn停止使用,github或gitlab等费用较高,所以最近尝试在本地用 git 现在本地进行代码管理。现总结一下 git 常用的操作命令和本地repository的创建步骤。
- git init //初始化
- git status //查看文件夹状态
- git add . //添加文件到stage
- git commit -m "upload exist file to git" //提交修改,commit
- git push -uf origin master //这一步由于没有gitlab repository,所以可以忽略
由于没有服务端的repository 所以第五步不用执行。刚开始没有理解 push 的真正意义,所以执行时会出现如下错误:
fatal: 'origin' does not appear to be a git repository
fatal: Could not read from remote repository.Please make sure you have the correct access rights
and the repository exists.
后来和之前项目上传代码到github 的时候进行比较,然后执行
git remote -v : 查看远程仓库的地址,发现上面的操作都为本地行为,没有远程仓库,所以可以省略。
可以通过下面的命令把代码提交到远程仓库地址。
git remote remove origin : 删除origin仓库。
git remote add origin <repository address> : 添加远程仓库地址。
git push -u origin master: 提交代码到远程仓库的 master 分支。