Difference between revisions of "Git notes"
m  | 
				|||
| Line 61: | Line 61: | ||
<!-- comment -->  | <!-- comment -->  | ||
| − | == Git Command Examples ==  | + | == [[#top|^]] Git Command Examples ==  | 
On the local work station, to see from which remote git repository a working copy comes:  | On the local work station, to see from which remote git repository a working copy comes:  | ||
| Line 71: | Line 71: | ||
<!-- comment -->  | <!-- comment -->  | ||
| − | == Git Terminology ==  | + | == [[#top|^]] Git Terminology ==  | 
What it means to 'rebase' in context of git . . .  | What it means to 'rebase' in context of git . . .  | ||
| Line 81: | Line 81: | ||
<!-- comment -->  | <!-- comment -->  | ||
| − | == Git Branching ==  | + | == [[#top|^]] Git Branching ==  | 
    *  https://git-scm.com/docs/git-branch  |     *  https://git-scm.com/docs/git-branch  | ||
| Line 88: | Line 88: | ||
<!-- comment -->  | <!-- comment -->  | ||
| − | == Using Git and Subversion Together ==  | + | == [[#top|^]] Using Git and Subversion Together ==  | 
Using Git and Subversion on one and the same project looks complicated . . .  | Using Git and Subversion on one and the same project looks complicated . . .  | ||
Revision as of 19:20, 8 November 2018
-- 2017-12-04  Monday - somvaar - सोमवार--
Git Notes
^ OVERVIEW - अवलोकन
Following article / document collection of notes on version control software named git.
^ How To Use Git
Wanting to understand and use git better, here are some on-line references to git version control.  Noting here git reference at orga.cat, this reference well-written with lots of commands and concise explanations of each command.  This reference is first in list:
Basic git commands:
Why are my local changes getting lost? Git commit-and-push-sequence not sufficient to transfer file changes to given git repository . . .
- [1] git merging
 - git merge and rebase commands
 - git stage, commit, push on command line
 - git 'commit' akin to traditional 'save file', Subversion model versus Git model
 
Git references found while answering specific git task questions:
- Create new git repository by Karl Broman
 - Add existing project to Github
 - rename a file under Git version control
 - git-diff
 
$ git diff HEAD .
Markdown and .md file formatting at Github
Git and Working with Remote Repositories
Release tag creation and naming in Git
^ Git Command Examples
On the local work station, to see from which remote git repository a working copy comes:
$ git remote -v
^ Git Terminology
What it means to 'rebase' in context of git . . .
* https://git-scm.com/docs/git-rebase
^ Git Branching
* https://git-scm.com/docs/git-branch
^ Using Git and Subversion Together
Using Git and Subversion on one and the same project looks complicated . . .