xcode,git tips】的更多相关文章

change organization name 选中project or target,最右侧Utilities面板->Project Document 修改source folder名字 -- -ProjectA.xcodeproj -ProjectA 右侧Utilities面板修改ProjectA to ProjectB. 左侧选择ProjectA文件夹,右侧Utilities面板修改location下的文件夹为ProjcetB(预先copy ProjectA to ProjectB) 同…
1.使用前说明: 不知道XCode,Git的请自行度娘,不知道GitBucket的,可参考文章:git 私服搭建-gitbucket 初试牛刀 2.创建Git步骤 1>在gitbucket创建账号,在账号下创建Repository 创建成功后会有git语句提示,分别对应新的git项目和已经存在git文件的项目,很人性化: 2>在本地,通过终端上传git文件 (提示:执行下面的代码如果遇到没有找到文件或者文件夹,建议进入子菜单或者父菜单再试试) 对于没有.git文件的项目,需要先生成.git文件…
退出xcdoe, 打开终端(Terminal),进入到你的项目目录下 在终端输入如下代码 git rm --cached *.xcuserstate git commit -m "Removed cached files" git push 下次Xcode commit就不会包括user interface state…
导读 Git被越来越多的公司使用,因此我们需要了解Git使用过程中的一些技巧. 一.Configuration:配置 列举所有的别名与配置 git config --list Git 别名配置 git config --global alias. git config --global alias.st status 设置git为大小写敏感 git config --global core.ignorecase false 二.Help:常用的辅助查询命令 在git 命令行里查看everyday…
撤销已经推送到远程仓库的最后一次提交,要小心这么操作,因为远程仓库还有别人在使用 $ git reset --hard HEAD^ $ git push -f origin master 从仓库中提出一个文件夹作为单独的仓库 $ ls ORIG_REPO $ git clone ORIG_REPO NEW_REPO --no-hardlinks $ cd NEW_REPO $ git filter-branch --prune-empty --subdirectory-filter YOUR_F…
http://blog.csdn.net/w13770269691/article/details/38704941 在已有的git库中搭建新库,并且将本地的git仓库,上传到远程服务器的git库中,从而开始一个新的项目 首先,在本地新建文件夹abc,进入到abc里面,然后git init.这样就在本地初始化了一个git项目abc.然后,登录到远程的git服务器上,到gitrepo目录下面,mkdir abc.git.然后进入abc.git目录.git  --bare init.这样就在服务器端…
一.在同 .Git目录下创建.gitignore文件.在文件中加入如下内容: *.xcuserstate project.xcworkspace xcuserdata UserInterfaceState.xcuserstate project.xcworkspace/ xcuserdata/ UserInterface.xcuserstate 二.退出xcdoe, 打开终端(Terminal),进入项目目录下. 三.在终端键入 git rm --cached [YourProjectName]…
This tutorial is by Malek Trabelsi, a passionate iOS developer from Tunisia focused primarily on mobile and web technologies. Whether you’re a solo developer or working on a team, if you’re not using source control for your projects, you should be. S…
一.初始環境配置 git config --global user.name "John Doe"git config --global user.email johndoe@example.com git config --global core.editor vimgit config --global color.ui true git config --global alias.co checkoutgit config --global alias.br branchgit…
英文原文:git: fetch and merge, don’t pull This is too long and rambling, but to steal a joke from Mark Twain Blaise Pascal I haven’t had time to make it shorter yet.  There is some discussion of this post on the git mailing list, but much of it is tangen…