Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
– The Git website
Choose one of the following options.
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
– The Git website
Choose one of the following options.
Determine on which Linux distribution your system is based on. See List of Linux distributions – Wikipedia for a list. Most Linux systems – including Ubuntu – are Debian-based.
Open a terminal window. Copy & paste the following into the terminal window and hit Return
. You may be prompted to enter your password.
sudo apt update
sudo apt upgrade
sudo apt install git
You can use Git now.
Open a terminal. Copy & paste the following into the terminal window and hit Return
. You may be prompted to enter your password.
sudo yum upgrade
sudo yum install git
You can use Git now.
Homebrew […] simplifies the installation of software on the Mac OS X operating system.
Copy & paste the following into the terminal window and hit Return
.
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
brew doctor
You will be offered to install the Command Line Developer Tools from Apple. Confirm by clicking Install. After the installation finished, continue installing Homebrew by hitting Return
again.
Copy & paste the following into the terminal window and hit Return
.
brew install git
You can use Git now.
@Anthomy1
I'm using Kali Linux.
From: https://docs.kali.org/general-use/kali-linux-sources-list-repositories
⚠️ Any additional repositories added to the Kalisources.list
file will most likely BREAK YOUR KALI LINUX INSTALL.
If this doesn't do it, I'd be real careful now...
sudo apt-get update
sudo apt-get install git
nice
Use this command to check your current Git version: git --version
Just a heads up!
The Instructions for Windows is linking to the linux instructions
@mithlesh4257 try
sudo apt-get update
thensudo apt-get upgrade
followed bysudo apt-get install git
This one worked!! Thanks
It worked! Thank you.
The link for the Mac Download is outdated. This is the one that should be used -
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
buhhiih
Thanks mark-nirdesh that worked for me as well
I have tried installing homebrew via mac os terminal, but it keeps asking me for a password. does anyone know which password this is? it comes up as a key sign.
It looks like it uses sudo
to install itself to a specific location on your computer; sudo
requires your password. You will have to put your macOS user's password.
This is badly designed, it should actually explain why it is using sudo
.
Works for Mac! Where do I give thumbs up?
I need help.
I'm using Kali Linux.why use shell ?
use sudo apt-get install git
They (incorrectly) copied the entire markdown-laden code-block and pasted that into the bash terminal, which of course bash cannot interpret as a command. Do not paste the markdown (e.g., ```shell
) into bash — that part is just for formatting the code on GitHub.
git hub setup for linux
I am getting an error while installing git for UBUNTU Can anybody help please
Your Ubuntu version is no longer maintained. You need to update your distribution to a version that is within its support lifetime. For example, try using this upgrade combination:
sudo apt update
sudo apt -y upgrade && sudo apt autoremove -y
sudo apt-get -y dist-upgrade
If that doesn't work, then try re-building your sources.list
using this tool: Ubuntu Sources List Generator
Command | Meaning |
---|---|
apt update |
Used to re-synchronize the package index files from their sources. The indexes of available packages are fetched from the location(s) specified in /etc/apt/sources.list (5). An update should always be performed before an upgrade or dist-upgrade . |
apt upgrade |
Used to install the newest versions of all packages currently installed on the system from the sources enumerated in /etc/apt/sources.list (5). Packages currently installed with new versions available are retrieved and upgraded; under no circumstances are currently installed packages removed, nor are packages that are not already installed retrieved and installed. New versions of currently installed packages that cannot be upgraded without changing the install status of another package will be left at their current version. An update must be performed first so that apt-get knows that new versions of packages are available. |
apt-get dist-upgrade |
In addition to performing the function of upgrade, this option also intelligently handles changing dependencies with new versions of packages; apt-get has a "smart" conflict resolution system, and it will attempt to upgrade the most important packages at the expense of less important ones, if necessary. |
sudo apt-get update
then sudo apt-get upgrade
followed by sudo apt-get install git
when i want to send my code to my repository --> "git push -u origin main"
this appears, but why they continue ask me about password if they already not accept.
and i been trying whit ssh keys and can not do it also.
some idea...
remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.
remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information.
fatal: Authentication failed for 'https://github.com/duarteing/globalduarte.github.io.git/'
First, you need to create a personal access token (PAT). Why? The process is described here: Creating a personal access token
Once you have a token, you can enter it instead of your password when performing Git operations over HTTPS.
For example, on the command line you would enter the following:
$ git clone https://github.com/username/repo.git
Username: your_username
Password: your_token
Personal access tokens can only be used for HTTPS Git operations. If your repository uses an SSH remote URL, you will need to switch the remote from SSH to HTTPS.
If you are not prompted for your username and password, your credentials may be cached on your computer. You can update your credentials in the Keychain to replace your old password with the token.
Instead of manually entering your PAT for every HTTPS Git operation, you can cache your PAT with a Git client. Git will temporarily store your
credentials in memory until an expiry interval has passed. You can also store the token in a plain text file that Git can read before every
request. For more information, see "Caching your GitHub credentials in Git."
Hi there,
I'm using kali linux
I still getting this error while trying to download git :
Sub-process /usr/bin/dpkg returned an error code (1)
what I have to do here??
Hi there, I'm using kali linux I still getting this error while trying to download git : Sub-process /usr/bin/dpkg returned an error code (1)
what I have to do here??
@hadiheib99 You don't mention the entire apt
readout, but one of your packages may be broken.
Here are a few things you can try (run sudo apt update
after each).
The first method you can try is to reconfigure the package database.
Perhaps the database got corrupted while installing a package.
Reconfiguring often fixes the problem.
sudo dpkg --configure -a
If a package installation was interrupted previously, you may try to do
a force install.
sudo apt install -f
If it’s not an issue for you, you may try to remove the broken package
manually. Don’t do this for Linux Kernels (packages starting with
linux-
).
sudo apt remove <package_name>
This should be your last resort. You can try removing the files
associated to the package in question from /var/lib/dpkg/info
.
You need to know a little about basic Linux commands to figure out
what’s happening and how can you use the same with your problem.
For example, you had an issue with polar-bookshelf
. You would look for the
files associated with it:
ls -l /var/lib/dpkg/info | grep -i polar-bookshelf
-rw-r--r-- 1 root root 2324811 Aug 14 19:29 polar-bookshelf.list
-rw-r--r-- 1 root root 2822824 Aug 10 04:28 polar-bookshelf.md5sums
-rwxr-xr-x 1 root root 113 Aug 10 04:28 polar-bookshelf.postinst
-rwxr-xr-x 1 root root 84 Aug 10 04:28 polar-bookshelf.postrm
Now all I needed to do was to remove these files:
sudo mv /var/lib/dpkg/info/polar-bookshelf.* /tmp
Use the sudo apt update
and then you should be able to install software
as usual.
thank you
Just confirmed that macOS instructions still work ! 🗡️
It worked in Ubuntu
Thank you
thank you
Install git on Ubuntu
From the launchpad git-core ppa
apt commands output
hub
:use github from the command-line
hub
is an extension to command-line git that helps you do everyday GitHub tasks without ever leaving the terminalHope that helps someone.
Virgil