Posted in git
8869
3:23 am, April 22, 2022
 

git basics - git init, git commit, git all, git *

create a new repository

git init

the following code can be typed in a terminal window, once you have installed git for your OS.

This will create a directory called git-test assuming you already have a directory called code under your main directory.

cd code
mkdir git-test
cd git-test
git init

the git init will create a new git repository

 

add and commit

git add filename

you can add a single file with git add filename.php

git add *

add all the files with git add *

run these commands in the git-test directory

 

Create a new file and add it

this will add a new file called index and add it and then commit it to the local git repository.

nano index.php

type in hello world! or whatever text you want in your file then type

git add index.php

then to commit the change type in

git commit -m "added the file index and some text"

Now we have created the index.php added some text into it and commit it to our local copy.

Pushing changes to a remote server

git push origin master

or

git remote add origin <server>

then go off to git hub and create a new repository which will then give you the key to add the origin to your repo.

git remote add origin git@github.com:...

git branch -M main
git push -u origin main

You will also need to add the ssh key to allow pushing to this repo

otherwise you will get the following message

git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

 

 

👨‍💻

External Link for git basics - git init, git commit, git all, git *

View Statistics
This Week
258
This Month
1049
This Year
3030

No Items Found.

Add Comment
Type in a Nick Name here
 
Search Code
Search Code by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
In this case my anchor this week becomes driving almost 2hrs outside of Atlanta to one of my favorite hard core gyms in the world.. MetroFlex aka The Dungeon. The gym owners turn the heat way up so it becomes a fun sweat box and the gym members just watch from afar and leave me alone. I happily drive myself long distances to find MY ANCHOR. Our anchor allows us to have balance, focus and be as productive as possible. And if you're in the middle of a heavy set and your headphones start to fall off your head, like mine did here.. well.. f*ck the headphones. Let em break and fall. You can always get a new pair, but the iron ain't ever gonna lift itself.
Unknown
Random CSS Property

clip-path

The clip-path CSS property creates a clipping region that sets what part of an element should be shown. Parts that are inside the region are shown, while those outside are hidden.
clip-path css reference