Popular
Custom Routing- Rewriting .htaccess file
GIT Commands
How to push local branch to Remote Github : $ git push origin [branch_name] How do I make Git ignore file mode (chmod) changes: git config --global core.fileMode false How to check status of the current working branch: git status How to copy repository in to our local machine: git clone <repository_url> How to create new branch in our local: git checkout -b <nameOfNewBranch> How to check various branches on our local machine: git branch How to add fiule to git commit: git add <filesName1> <filesName2> How to add all modified files to git commit: git add . How to commit git commit -m <message related to commit> How to pull latest updates from teh branch git pull origin <branch_name> How to push local changes to github: git push origin <branchName> How to remove a local branch from our machine: git branch -d {the_local_branch_name} (use -D ...


Comments
Post a Comment