Integrates Git with Sublime 3 to pull or push to Github by using Sublime plugin Git

时间:2023-03-09 06:25:01
Integrates Git with Sublime 3 to pull or push to Github by using Sublime plugin Git

1. Git must be installed, Sublime plugin "Git" only connects Sublime with Git.

Download URL

https://git-scm.com/downloads

2. Enable Sublime 3 Package Control, which is a sublime package manage tool

Ctrl+Shift+P

Install Package Control

3. Install Package (Plugin) "Git"

Ctrl+Shift+P

Install Package -> Search "Git", then install

4. After installed, most of Git Cmd could be issued from follow operation

Ctrl+Shift+P

Type "Git: "

5. The common operations as below

1). Git: Init --> Initialize current directory as Git Directory

2). Git: Add All --> Add all changed files to staging area, Git: Add Current File --> To add current file into staging area.

3). Git: Commint --> Add staged files to commit area. It will promt another page to add commit message. This page will show all code hunks that will be part of this commit. Add a commit message and close the file to commit files.

4). Git: Push --> Push Changes to remote origin. will push your local committed changes to associated remote repository. This command will give error in sublime console if remote repository is not associated with local repo.

Open Git at Windows CMD, try to make a remote repo.

git remote add origin https://github.com/username/reponame.git

5). Git: Pull --> Pull changes from remote origin

After making remote repo, we can Push to Github and Pull from Github

Notes: When using git pull, there will be an error --> fatal: refusing to merge unrelated histories

Open Git at Windows CMD, try to pull from remote repo with a parameter

git pull origin master --allow-unrelated-histories

Then it's able to pull from sublime

6). Git: Diff All Files --> will show all changes in the code which are not committed. This will open up new window which is showing all the changes in the code hunks.

7). Git: Log All --> Will prompt to select the list of previous commit. Once you select specific commit, it will show log of all changes happend in that commit.

Ref:

1. http://smoothprogramming.com/sublime-text/how-to-use-git-in-sublime-text/

2. https://*.com/questions/37937984/git-refusing-to-merge-unrelated-histories

Check log of changes in specific commit