跳至主要內容

git基本命令

sixkey小于 1 分钟后端中间件Git

git基本命令

前期准备

  • 在git上创建仓库
  • 双击打开本地的git-bash.exe
  • 进入到项目目录中

命令操作

进入到项目目录后执行如下命令

git init #本地初始化仓库

添加到暂存区

git add

提交到仓库

git commit -m 'first commit'

添加远程仓库地址

git remote add origin https://gitee.com/six-key/meet-booking.git

推送

git push -u origin master
git remote add origin git@github.com:swx08/hh.git
git branch -M main
git push -u origin main