git hub

如果希望保留生产服务器上所做的改动,仅仅并入新配置项, 处理方法如下:

git stash
git pull
git stash pop
然后可以使用git diff -w +文件名 来确认代码自动合并的情况.

反过来,如果希望用代码库中的文件完全覆盖本地工作版本. 方法如下:

git reset --hard
git pull
其中git reset是针对版本,如果想针对文件回退本地修改,使用

untracked working tree file
参考:http://blog.csdn.net/sheismylife/article/details/7204345
编写脚本自动编译并部署时的注意

如果想在C2上编写脚本自动从S1上获取最新代码时,要注意:

1.首先之前产生的公钥不能设密码,否则每次git pull的时候都会要求输入密码。

2.不要将项目中的编译中间文件提交到S1上,比如CMake工程里面的build目录的文件,Maven工程里面的target目录里面的文件。否则下次在C2等客户端用git pull会报类似于这样的错误:

error: Untracked working tree file ‘public/images/icon.gif‘ would be overwritten by merge.
需要执行下面的命令才能修复:

git reset --hard HEAD    
git clean -f -d    
git pull

时间: 2024-10-13 22:07:30

git hub的相关文章

git hub 之旅

这几天弄了git hub 虽然还没有比较好的程序在上面----- 先记录下.. 0x00 generating ssh keys: ssh-keygen -t rsa -C "[email protected]" //ssh-add ~/.ssh/id_ras (if apear:Agent admitted failure to sign using the key. Permission denied (publickey)) cat ~/.ssh/id_ras.pub copy

利用Git hub创建博客

1.准备工作 到Git官网 下载Git,并且配置环境变量 2.注册Git Hub账号 到Git Hub官网注册相关账号,比如本文的账号为13627225740L,并至New repository创建仓库,username的格式如lihui.github.io 3.利用创建Github创建本地仓库 4.配置SSH key 5.用户配置 6.上传代码 原文地址:https://www.cnblogs.com/Annely/p/10240552.html

git hub 的使用步骤

1:准备环境 ①电脑已安装git ②注册github账号 一:使用git控制台进行本地操作 ①打开 GitBash ②填写用户名和邮箱作为标识 分别输入以下命令: git config  --global user.name"此处填写用户名" git config  --global user.email"此处填写邮箱名" 此时可以输入 git config --list查看此信息 ③将本机中某个文件夹设为仓库 用cd文件名路径到要被设为仓库的文件夹 然后输入git

push changes back to git hub

git clone https://github.com/dingbo8128/scala-spider.git vi .git/config  把url后边的 /info/ref去掉 在github.com前加上[email protected] git push 输入密码就可以提交了

windows下git hub的GUI软件配置与使用

转载自:http://www.cnblogs.com/haore147/p/3618930.html   1. 安装两个软件 1 2 1. git的命令行程序--git for windows:http://git-scm.com/download/win 2. git的GUI程序--tortoisegit:http://code.google.com/p/tortoisegit/downloads/list 需要说明的是,tortoisegit自带的help文档,一个chm文件,可以作为学习这

git hub 操作步骤备忘

我是在码云上申请了 github账号.用法和官方的一样,只不过码云可以设置私有项目. ---------------------------------------------------------------------------------------------------------- github 远程配置并与本地仓库进行连接 ------------------------------------------------------------------------------

如何连接git bash和git hub

git config --global user.name "Your Real Name" 2 git config --global user.email [email protected] 1 ssh-keygen -C '[email protected]' -t rsahttp://blog.chinaunix.net/uid-17188120-id-4989187.html

git hub 使用心得

git中重要的概念: 工作目录(working directory):在工作目录中修改文件,修改后的文件状态是modified,新添加的文件是untracked,通过git add命令将文件保存到staging area中: staging area:保存下次即将提交到git repository中文件的snapshot.文件状态是staged,通过git commit命令提交文件到git repository中: git repository:本地仓库.通过git push命令更新远端服务器仓

如何使用 Android Studio 的 git hub 功能

How to use GitHub with Android Studio This article will explain how to use GitHub with Android Studio. Firstly, let’s login to github.com and create a new repository. From the top right corner of the screen, click the +sign and select New repository.