Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix help text #215

Merged
merged 1 commit into from Jan 21, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
38 changes: 19 additions & 19 deletions help.txt
@@ -1,33 +1,33 @@
{cyan}{bold}
HELPFUL THINGS{/bold}{/cyan}

- Get stuck? Find an error? File and issue at:
{bold}github.com/jlord/git-it{/bold}

{cyan}
GIT COMMANDS
------------{/cyan}

{cyan}Configuration{/cyan}

{bold}Configure your name{/bold}

$ git config --global user.name "Your Name"

{bold}Configure your username{/bold}

$ git config --global user.username githubusername

{bold}Configure your email{/bold}

$ git config --global user.email youremail@example.com

{cyan}Check in{/cyan}

{bold}Check status of changes to a repository{/bold}

$ git status

{bold}View changes between commits{/bold}

$ git diff
Expand All @@ -44,7 +44,7 @@
message describing the changes{/bold}

$ git commit -m "your commit message"

{cyan}Remotes{/cyan}

{bold}To push your changes to a remote{/bold}
Expand All @@ -54,15 +54,15 @@
{bold}To pull in changes from remote{/bold}

$ git pull <REMOTENAME> <BRANCHNAME>

{bold}To set a URL for a remote{/bold}

$ git remote set-url <REMOTENAME> <BRANCHNAME>
$ git remote set-url <REMOTENAME> <URL>

{bold}Add a remote{/bold}

$ git remote add <REMOTENAME> <BRANCHNAME>
$ git remote add <REMOTENAME> <URL>

{cyan}Branches{/cyan}

{bold}Merge a branch into current branch{/bold}
Expand All @@ -74,7 +74,7 @@
$ git checkout <BRANCHNAME>

{bold}Delete a local branch{/bold}

$ git branch -d <BRANCHNAME>

{bold}Delete a remote branch{/bold}
Expand All @@ -92,18 +92,18 @@
{bold}Navigate into an existing folder (aka change directory){/bold}

$ cd <FOLDERNAME>

{bold}Back out of a folder/directory{/bold}

$ cd ..

{bold}Back out all the way to the root directory{/bold}

$ cd

{bold}List the items in a folder{/bold}
$ ls

$ ls

{bold}Remove (delete) a file{/bold}

Expand All @@ -112,4 +112,4 @@
{bold}Remove (delete) a folder{/bold}

$ rm -rf <FOLDERNAME>