From 92143ce7d37cc39772803732ad1274dcf0b0d18d Mon Sep 17 00:00:00 2001 From: S Leibrock Date: Tue, 16 Aug 2016 11:37:50 -0400 Subject: [PATCH] Updated FAQ (markdown) --- FAQ.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FAQ.md b/FAQ.md index 592d983..c15559e 100644 --- a/FAQ.md +++ b/FAQ.md @@ -55,14 +55,14 @@ git checkout my-branch Now you can make your changes. Once you've finished that, you will then have to add these files to be staged for committing. Once added, we can create a commit message, and push it to your fork repository. -``` +``` bash git add file.txt # add more files if you've made changes in more places git commit -m "Fixed not having a file.txt in the project" ``` Now the changes are ready to be pushed. Currently, Git doesn't know where to push these changes, since we're on a different branch. We need to set a remote that we can push these changes to. -``` +``` bash git remote add myrepo https://github.com/my-username/ssh-chat git push -u myrepo ```