Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Getting Started with a new Github Account -></p> <p>1.) Create a Github Account (You probably done this)</p> <p>2.) Navigate to your App's Folder (<strong>cd yourfoldername</strong>), you must be in your App's folder to configure git Properties.</p> <pre><code>$ git config --global user.name "Your Name" # Set your Git name $ git config --global user.email youremail@gmail.com # Set your Git email </code></pre> <p>3.) Follow these Steps</p> <pre><code>$ git init # Set up Git on your project $ git status # See tracked, untracked, and staged files $ git add . # Add new files to Git $ git commit -am "Initial commit" # Save your project files to Git </code></pre> <p>4.) Your App is now under Version Controll, now you must Generate your SSH Key.</p> <p>-> <a href="https://help.github.com/articles/generating-ssh-keys" rel="nofollow">Generating SSH Keys</a></p> <p>If you are on Windows you can just download the Github Application, it will save you a lot of this Manual Setup. But setting up SSH Key's is not so difficult. Just follow the Guide.</p> <p>5.) Then, you create a New Repository on Github, and it tells you on Page to enter this 2 lines. Youre Done :) </p> <pre><code>$ git remote add origin git@github.com/yourusername/yourreponame.git # Set up git to push to your Github repository $ git push -u origin master # Push your code to Github (sets the upstream the first time) </code></pre> <p>Hope this Helps.</p> <p>P.S.: I started learning Rails a few weeks ago -> Check this class on skillshare out -> <a href="http://skl.sh/YZ8swT" rel="nofollow">One Month Rails: Learn to Code</a> !!</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload