NNNanteza Nuriatinhamnanuru.hashnode.dev·May 9, 2022 · 1 min readCode Snippet of steps to push to a github repositoryInnitialize the repo by using below line of code git init Add files from your local repository to the remote repo git add . Stage the added files for commitment git commit -m "commit message" Point the staged files to the repo and the branch g...00
NNNanteza Nuriatinhamnanuru.hashnode.dev·May 9, 2022 · 1 min readCollaborating on a repositoryHow to fork a repository on github Open your github, Search for a user whose repository you are collaborating on Fork the repository to appear on your account as a forked repo Clone the forked repo on your computer git clone repo url Edit t...00