ローカルプロジェクトをgiteeにアップロード
1684 ワード
gitクライアントのインストール
Git公式サイトにダウンロードして、ウェブサイトの住所:https://git-scm.com/downloads,[インストール構成手順は参照してください]を参照してください.
Gitee/Githubウェアハウスの作成
これは直接Gitee/Githubインタフェースに入り、アカウントを登録し、倉庫を作成します.倉庫アドレスをコピーできます.
作成した倉庫をローカルに引き出す
プロジェクトの更新
git bashを使用してローカルファイルをコミットする場合、次のエラーが発生します.
$ git push origin master
Fatal: HttpRequestException encountered.
Username for 'https://github.com': syb666
To https://github.com/syb666/Django-admin.git
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'https://github.com/syb666/Django-admin.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.
解決策:
1: push pull
$ git pull origin master #git pull --rebase origin master
$ git push -u origin master
2: push ( merge, push )
$ git push -u origin master -f
3: ,
$ git branch [name]
# branch , push
$ git push -u origin [name]