Skip to main content

Posts

Showing posts from September, 2017

Basic git commands to handle codes

Creating a Repository on GitHub: ------------------------------------------ 1. Sign in to GitHub 2. Click the "+" sign beside your profile and click "New Repository" 3. Provide repository name and other necessary things if needed. Pushing Code/project folder into GitHub Repository: ------------------------------------------------- 1. Go to the project location on your pc/laptop. 2. Enter into the Project. 3. Right click on mouse and select "Git Bash Here" 4. Run the following commands SEQUENTIALLY -            git init            git add -A ( add your files )            git status            git commit -m "Your Message" ( commit locally )            git remote add origin GITHUB HTTPS PROJECT LINK                                   ...