• Overview

SourceTree可以在bookmarks界面跟踪所有的git和mercurial项目。可以概览工程中是否有需要提交的文件等。添加新的bookmark很简单,可以通过两种方式,通过本地的file sysytem或者clone url或者是创建新的

仓库。

本地:就是在本地已经有了git项目,然后直接导入即可。可以找到需要的本地项目然后直接拖曳或者选择“add working copy”绝对路径搜索添加都可以找到.

 

clone url: 就是获取有效的git项目url后选择“clone repository”来下载工程到本地。

  • The Toolbar

The repository window has a slightly different toolbar depending on whether you're looking at a Mercurial or Git repository:

The View Button
This button allows you to switch between the 3 main views of the repository: File Status, Log, and Search.

Commit
Opens the Commit dialog so you can commit your changes. In Git, if you're using staging, the default is to open the dialog with the commit of staged changes selected. In Mercurial, or Git with the staging view disabled, the dialog opens with either all pending files selected (if 0 or 1 file is selected in the File Status view, or you're on another view), or with specific files selected (if 2+ files are selected in the file status view).
提交代码改动。
You can also commit specific files by using the context menu version of Commit from the File Status View, or by customising your toolbar to add the 'Commit Selected' button.

Update (Mercurial) / Checkout (Git)
Allows you to switch your local working copy to a different point in history. In Git, this will also move your HEAD (equivalent to git reset followed by git checkout).
checkout会切换不同的本地working copy


Revert (Mercurial) / Reset (Git)
Use this to undo changes in your working copy.
将在本地当前working copy代码的修改还原


Shelve (Mercurial) / Stash (Git)
Moves any uncommitted changes you have in your working copy to a storage area, and returns your working copy to a clean state. A entry representing your stashed/shelved changes will appear on the sidebar once complete and you can bring these changes back into your working copy later from the sidebar context menu.

Add (或者选择修改的文件然后右键单击选择 add to index)
Adds any selected untracked files to source control - the next commit will start to track these files.
这个功能是将选择的未跟踪文件加入到source control中的版本跟踪控制中去


Remove
Stops tracking selected files and removes them from the working copy. The next commit will remove these files from being tracked in source control.
移除掉本地working copy中的选择的文件使其不被跟踪和控制


Add/Remove
A shortcut to stop tracking all files which are missing from the working folder, and to add any untracked files to source control. In Git, this also stages any modified files.

Fetch (Git only)
Download new commits from your remotes, but don't bring them in to your own branch yet.
这个会下载远程最新的提交,但是不会更新到你自己的分支中去。这种情况有可能sourcetree的pull按钮上面没有显示目前可以更新的提交,使用这个更进一步确认是否还有代码需要更新


Pull
Download new commits from your remotes and bring them in to your current branch, either by merging or rebasing. This icon will show a number over the top of it if there are commits available on the remote for you to pull (updated periodically based on your Preferences).
下载最新的代码更新到你当前的分支中去


Push
Upload new commits to a remote. This icon will have a number superimposed on it if you have commits which you haven't pushed yet.
上传代码,这个会弹出框体可能目前存在的多个可以提交的分支,注意只勾选需要提交的分支选项。


Branch
Create a new branch (also includes a tab for removing branches in Git)
创建新的分支


Merge
Merge changes into your current branch.

Tag
Create and manage tags.

Create Patch
Create a patch file either from your current uncommitted changes, or from one or more commits that you've already made.

Apply Patch
Apply a patch file either to your working copy or directly to the commit log.

Terminal
Open a Terminal at the selected location (this button may not be displayed in the default toolbar, right-click the toolbar to customise it if you wish to add it).

Settings
Access per-repository settings such as remotes.

提交过程如下:

1,选择修改并需要提交的文件查看后右键点击选择add to index

2,创建新的分支

3,选择commit将需要上传的文件修改提交到本地

4,然后push,一定要注意去掉不需要提交本次修改的分支

5,到github网站对应项目下查看提交的分支然后pull即可

转载于:https://www.cnblogs.com/lisa090818/p/3556378.html

Logo

瓜分20万奖金 获得内推名额 丰厚实物奖励 易参与易上手

更多推荐