SAGARFIVE

Category: Git Tutorials

9.3 Git fetch

1 Fetch repo git fetch< repository Url>   2 Fetch specific branch fetch <branch URL><branch name>   3 Fetch all branches git fetch -all   4 Get latest

Read More »

9.2 Git push

Git upload the local changes to the git repository with commit 1. Pushing the changes to main branch or specific branch git push origin <branch-name>

Read More »

9.1 Git Pull

Task/Demo : Pull the latest changes made in remote repository (i) We cloned a repository , and listed files now we can see the list

Read More »

8.7 Git origin

Creating remote origin : git remote add origin <repository url> git remote add origin https://github.com/sagarfive/nature-website We can also use other names for repository shortname git

Read More »

8.6 Git Remote

Check remote repository git remote   Check remote repository URL git remote -v Adding remote repository git remote add <short name><remote URL>git remote add origin-git

Read More »

8.3 Github Market Place

GitHub Marketplace contains tools that add functionality and improve your workflow. You can discover, browse, and install free and paid tools, including GitHub Apps, OAuth

Read More »

8.2 Github Webhook

Example : Github webhook-BuildTrigger-Integration-with-jenkins (i) We can trigger jenkins buildjob using below methods (ii) Its a jenkins build dashboard , we have to add the

Read More »