Chinaunix首页 | 论坛 | 博客
  • 博客访问: 934596
  • 博文数量: 192
  • 博客积分: 3070
  • 博客等级: 中校
  • 技术积分: 1861
  • 用 户 组: 普通用户
  • 注册时间: 2007-06-27 23:44
个人简介

Start Linux Leave Linux a while Back to Linux

文章分类

全部博文(192)

文章存档

2023年(18)

2022年(11)

2021年(8)

2020年(14)

2019年(7)

2018年(13)

2017年(16)

2016年(4)

2012年(2)

2011年(13)

2010年(26)

2009年(13)

2008年(27)

2007年(20)

我的朋友

分类: C/C++

2021-10-28 19:29:15

电脑安装git客户端、注册github账号并登陆

到本地项目文件夹右键选择git bash here

输入个人信息(代码提交者)

$git config --global user.name "xxxx" 
$git config --global user.email xxxxx@qq.com 

在本地项目目录创建本地仓库或在Gitee网站上新建一个仓库
$git init  
输入命令后项目目录会有一个隐藏的.git文件夹

上传所有代码到本地仓库
$git add.   (注意add后面有个点,与add之间有一空格)

这样就把代码上传到本地仓库了
$git commit -m "initial commit"

在gitee上新建项目,复制地址
关联本地仓库并上传代码
$git remote add origin (上步骤复制的地址)
$git push origin master

报错:
$ git push origin master
To
 ! [rejected]        master -> master (fetch first)
error: failed to push some refs to ''
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.


执行命令:
git pull origin master --allow-unrelated-histories

git 在pull或者合并分支的时候有时会遇到这个界面。可以不管(直接下面3,4步),如果要输入解释的话就需要:
1.按键盘字母 i 进入insert模式
2.修改最上面那行黄色合并信息,可以不修改
3.按键盘左上角"Esc"
4.输入":wq",注意是冒号+wq,按回车键即可

之后就可以成功的pull,push了
$ git push origin master


也有可能出现以下错误:
提交到远程报错,如下:
src refspec master does not match any

原因:
本地仓库为空
解决方法:使用如下命令 添加文件;

$ git add add.php addok.php conn.php del.php edit.php editok.php ftpsql.sql index.php
$ git commit -m "init files"
之后在push过程中出现如下错误:

$ git push -u origin master
Warning: Permanently added the RSA host key for IP address 'xx.xx.xxx.xxx' to the list of known hosts.
To git@github.com:hahaha/ftpmanage.git
 ! [rejected]        master -> master (fetch first)
error: failed to push some refs to 'git@github.com:hahahah/ftpmanage.git'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.


提示使用 git pull 之后在 push

使用如下命令解决:
$ git pull --rebase origin master
warning: no common commits
remote: Counting objects: 3, done.
remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (3/3), done.
From github.com:hahah/ftpmanage
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
First, rewinding head to replay your work on top of it...
Applying: init files


继续push,成功。



————————————————
版权声明:本文为CSDN博主「sclibingqing」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/sclibingqing/article/details/81179470
阅读(629) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~