Horje
Git comands Code Example
git commands
git merge --abort
git commands
git remote show origin
git commands
echo "# New-Projects" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/hussainbabar/New-Projects.git
git push -u origin main
Source: github.com
git basic commands
git push --all origin
Git comands
# The set of commands that were used in the `Basic Git Commands` video

# Make sure the directory is empty
ls

# Output some text to a `story.txt` file
echo "Once upon a time" >> story.txt

# Ensure that the file exists in the current folder
ls

# Initialize a local git repository
git init

# Show everything present in the current directory, including hidden
# files and folders
ls -a

# Show the status of the repository
git status

git commands
git reset HEAD filename
git reset HEAD -p




Shell

Related
conda install pydub Code Example conda install pydub Code Example
install pandas xlrd Code Example install pandas xlrd Code Example
window reset wifi cmd Code Example window reset wifi cmd Code Example
make everything uppercase or lowercase awk Code Example make everything uppercase or lowercase awk Code Example
view symbols of so linux Code Example view symbols of so linux Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11