github pull request code example

Example 1: github pull request

git pull [repository link] [branch]

Example 2: difference between pull and pull request

If you use git pull, you pull the changes from the remote repository
into yours.

If you send a pull request to another repository, you ask their 
maintainers to pull your changes into theirs (you more or less ask
them to use a git pull from your repository).

Example 3: how to pull git repository from github

git clone [email protected]:username/repo.git

Example 4: new repository github used

$ git init

$ git add .
# Adds the files in the local repository and stages them for commit. To unstage a file, use 'git reset HEAD YOUR-FILE'.

$ git commit -m "First commit"
# Commits the tracked changes and prepares them to be pushed to a remote repository. To remove this commit and modify the file, use 'git reset --soft HEAD~1' and commit and add the file again.

$ git remote add origin remote repository URL
# Sets the new remote
$ git remote -v
# Verifies the new remote URL

$ git push origin main
# Pushes the changes in your local repository up to the remote repository you specified as the origin

Example 5: how to send a pull request in git

git push origin some-branch

Example 6: github

pip3 install flask_bootstrap email_validator flask_wtf

Tags:

Misc Example