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…
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…
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…
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…
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…
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…
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…
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…
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…
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…
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…
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…
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…
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…
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…
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…
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…
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…
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:…
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,…
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…
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…
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…
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…
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…
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 have worked at Cotocus….
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…
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…
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…
