
Git Interview Questions and Answer Part – 10
Where can HEAD point? To a branch To a branch or nowhere To a branch or a commit (Ans) To a branch, a commit, a tree, or a blob How…
Read more »
Git Interview Questions and Answer Part – 7
How to Compute object ID and optionally creates a blob from a file? git hash-object (Ans) git cat-file git update-ref git count-objects How to Update the object name stored in…
Read more »
Git Interview Questions and Answer Part – 1
Q1. What is GIT? Git is a distributed version control system and source code management (SCM) system with focus to handle small and large projects source code versions in the…
Read more »
Git Interview Questions and Answer Part – 5
What is the function of ‘git rm’? What is the function of ‘git checkout’ in git? What is the use of ‘git log’? Explain what is commit message? How to…
Read more »
Git Interview Questions and Answer Part – 4
What is Version control system or Source code manager? Benefits of VCS or SCM? What is Git and What is a repository in GIT? Diffrence between Git and SVN? Two…
Read more »
Git Interview Questions and Answer Part – 3
What is GIT ? What is difference between GIT & Github ? Why we use GIT ? What is SCM & VCS ? What are the process of pushing the…
Read more »Git Interview Questions and Answer Part – 2
What is the difference between git pull and git pull? what is ‘working tree’? what is ‘staging area’? How do you resolve git conflicts? What is the difference between git reset and git reverse? In what…
Read more »
Best Branching and Merging strategies in git
Best Branching and Merging strategies in git Step 1 – First you need to learn the needs of branches. This is very good read. https://docs.microsoft.com/en-us/vsts/repos/tfvc/branching-strategies-with-tfvc?view=vsts Step 2 – Now time…
Read more »
Git Commands Tutorials and Example: Git Fetch – Update remote branch before merge to local branch
Best practice says that before you commit in git, you need to either do git pull or git fetch/merge. However, there is a way to find out wheather your branches…
Read more »Good GIT SCM Video at youtube.
rajeshkumar created the topic: Good GIT SCM Video at youtube.Hi Friends, This week I am started digging more into to GIT. I hope these videos will be helpful for you…
Read more »Git Web References & Cheatsheet
rajeshkumar created the topic: Useful website Reference for GIT Here are following website good to know more about GIT-SCM. help.github.com/ progit.org/ git-scm.com/ whygitisbetterthanx.com/ Regards, Rajesh Kumar Twitt me @ twitter.com/RajeshKumarIn…
Read more »Urgent requirement for ‘IBM RTC with SCRUM Master’ with our client
ranjita created the topic: Urgent requirement for ‘IBM RTC with SCRUM Master’ with our client Hi, Greetings for the Day!! We have urgent openings for” SCM with Scrum Master” with…
Read more »This user is in an organization and can’t be deleted.
scmuser created the topic: This user is in an organization and can’t be deleted. Following error while deleting users from git gub. This user is in an organization and can’t…
Read more »The ova package name does not match
rajeshkumar created the topic: the ova package name does not match While importing github-enterprise-11.10.320-x86_64.ova in Vmware workstation 7, I am getting following error… The ova package name does not match…
Read more »What does commit object contain and What is SHA1?
rajeshkumar created the topic: What does commit object contain and What is SHA1? The SHA All the information needed to represent the history of a project is stored in files…
Read more »Git Commands Tutorials and Example: Git Reset – Git Revert
git reset Vs git revert git reset Vs git revert The git revert command undoes a committed snapshot. But, instead of removing the commit from the project history, it figures…
Read more »What is Staging Area?
rajeshkumar created the topic: What is staging area? The Git directory is where Git stores the metadata and object database for your project. This is the most important part of…
Read more »Git Commands Tutorials and Example: Git Clean – How to clean git workspace?
How to clean workspace in git? To reset a specific file to the last-committed state (to discard uncommitted changes in a specific file): git checkout thefiletoreset.txt This is mentioned in…
Read more »Deep Dive into Git Hooks
Like many other Version Control Systems, Git has a way to fire off custom scripts when certain important actions occur. There are two groups of these hooks: client side and…
Read more »Chef Error – FATAL: Chef::Exceptions::ChildConvergeError: Chef run process exited u
rajeshkumar created the topic: FATAL: Chef::Exceptions::ChildConvergeError: Chef run process exited u FATAL: Chef::Exceptions::ChildConvergeError: Chef run process exited unsuccessfully (exit code 1) Error gitlab-ctl reconfigure Starting Chef Client, version 11.12.2 Compiling…
Read more »Github Error: -Couldn’t find host github.com in the _netrc file; using defaults
rajeshkumar created the topic: Couldn’t find host github.com in the _netrc file; using defaults C:\Build_WS\BuildDeployment\Job1\117>git push –verbose * Couldn’t find host github.com in the _netrc file; using defaults * Adding…
Read more »ERROR: Error cloning remote repo ‘origin’
rajeshkumar created the topic: ERROR: Error cloning remote repo ‘origin’ Error Started by user anonymous Building in workspace D:\tools\jenkins\jobs\Matrix-Fast-java\workspace Cloning the remote Git repository Cloning repository github.com/scmgalaxy/helloworld-java-ant.git > git.exe init…
Read more »Protocol error: bad band #101?
scmuser created the topic: send-pack: protocol error: bad band #101? How to resolve this issue during push in git using jenkins…. 21:36:30 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-release-plugin:2.3.1-snc1:prepare (default-cli) on…
Read more »Homebrew – error: The following untracked working tree files would be
rajeshkumar created the topic: Homebrew – error: The following untracked working tree files would be Error error: The following untracked working tree files would be overwritten by merge Solution Check…
Read more »Cloning/Accessing Repositories Form Windows
vinavs@yahoo.com created the topic: cloning/accessing repositories form windows I am having trouble accessing the git repository from windows machine. I generated the ssh keys in windows from cygwin and added…
Read more »
Top 10 Website to Host Git Repository Online
1 2 3 4 5 ; 6 7 8 9 10 Rajesh KumarI’m a DevOps/SRE/DevSecOps/Cloud Expert passionate about sharing knowledge and experiences. I am working at Cotocus. I blog tech…
Read more »
Git Troubleshooting | Git Troubleshooting Techniques
export GIT_CURL_VERBOSE=1 git push -u origin –all –verbose git config –list & GIT_CURL_VERBOSE=1 git push & export GIT_CURL_VERBOSE=1 git push git config –global http.postBuffer There are useful to debug, long…
Read more »
Git alias commands collection for faster easier
BASH aliases for GIT Following BASH aliases can be used in ~/.BASHRC alias g = “git status” alias ga = “git add” alias gaa = “git add .” alias gc…
Read more »
A Successful Git branching model | Git branching model Guide
I was reading article and thought to repost here. It focuses around Git as the tool for the versioning of all of our source code. Why git? For a thorough discussion…
Read more »