中国领先的会员管理系统,微卡通会员管理系统,联系QQ:36281733

asp.net ext vc++ gamehack asm vb

天下武功,唯快不破.
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

git 创建仓库

Posted on 2022-01-16 16:33  很聪明的Joy  阅读(43)  评论(0编辑  收藏  举报
Git Bash

git config --global user.name "jus" git config --global user.email "333@qq.com"

创建 git 仓库:

mkdir qct
cd qct
git init 
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin git@gitee.com:just/qct.git
git push -u origin "master"

已有仓库?

cd existing_git_repo
git remote add origin git@gitee.com:ja/qct.git

  git pull origin master

  git branch --set-upstream-to=origin/master

  git pull


git push -u origin "master"
中国领先的会员管理系统,微卡通会员管理系统,联系QQ:36281733