代码添加版本管理初次上传代码到git及遇到问题和解决方案

it2023-01-21  55

一、在git上创建一个项目

二、提交代码命令

  Git global setup

git config --global user.name "用户名" git config --global user.email "邮箱"

Create a new repository

git clone http://ip:port/root/policy-web.git cd policy-web touch README.md git add README.md git commit -m "add README" git push -u origin master

Existing folder

cd existing_folder git init git remote add origin http://ip:port/root/policy-web.git git add . git commit -m "Initial commit" git push -u origin master

Existing Git repository

cd existing_repo git remote rename origin old-origin git remote add origin http://ip:port/root/policy-web.git git push -u origin --all git push -u origin --tags

三、遇到问题 

问题一:

! [rejected]        master -> master (fetch first) error: failed to push some refs to 'http://ip:port/root/policy-web.git'

出现这个问题是因为github中的README.md文件不在本地代码目录中,可以通过如下命令进行代码合并

git pull --rebase origin master

问题二:

fatal: remote origin already exists.

1、先删除远程 Git 仓库然后再添加

git remote rm origin git remote add origin http://ip:port/root/policy-web.git

问题三:

Cloning into 'policy-web'... remote: HTTP Basic: Access denied fatal: Authentication failed for 'http://ip:port/root/policy-web.git/' 1、在git身份验证中输入的账号或者密码不正确。

最新回复(0)