git推送本地項目到遠程gitee

  • git全局設置
    git config --global user.name "xxx"
    git config --global user.email "xxx"
  • 建立git倉庫
    1)進入項目根目錄
    git init
    圖片描述
    2)添加到本地倉庫
    git add .
    圖片描述
    git commit -m "xxxx" 提交信息
    圖片描述
    3)從遠程獲取最新版本並merge到本地
    git pull origin master
    圖片描述
    4)提交本地分支到遠程分支
    git remote add origin https://gitee.com/tahara/git-... git服務器上建立一個倉庫
    圖片描述
    git push -u origin master
    圖片描述
  • 在提交過程當中,切記要先pull代碼,不然可能報出

    ! [rejected] master -> master (non-fast-forward)
    error: failed to push some refs to 'https://gitee.com/tahara/git-...'
    hint: Updates were rejected because the tip of your current branch is behind
    hint: its remote counterpart. Integrate the remote changes (e.g.
    hint: 'git pull ...') before pushing again.
    hint: See the 'Note about fast-forwards' in 'git push --help' for details.
    出現這個問題是由於gitee中的文件不在本地代碼目錄中,能夠經過以下命令進行代碼合併,以後在提交
    git pull --rebase origin master
    圖片描述git

  • 若已有倉庫
    git remote add origin https://gitee.com/tahara/git-test.git
    git push -u origin master
相關文章
相關標籤/搜索