git简单操作

Posted 知秋

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git简单操作相关的知识,希望对你有一定的参考价值。

setting username and email

git config --global user.name "wuquanan"
git config --global user.email "382633764@qq.com"

Create a new repository

git clone http://192.168.0.106/oldfitshow/server.git
#git clone -c core.longpaths=true http://192.168.0.106/oldfitshow/server.git
cd server
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master

Push an existing folder

cd existing_folder
git init
git remote add origin http://192.168.0.106/oldfitshow/server.git
git add .
git commit -m "Initial commit"
git push -u origin master

Push an existing Git repository

cd existing_repo
git remote rename origin old-origin
git remote add origin http://192.168.0.106/oldfitshow/server.git
git push -u origin --all
git push -u origin --tags

以上是关于git简单操作的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段15——git命令操作一个完整流程

如何管理在每个 git 版本中添加私有代码片段?

使用 Git 来管理 Xcode 中的代码片段

markdown Git代码片段

GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段

GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段