January 2025
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
2728293031  

Categories

January 2025
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
2728293031  

git cmd

git pull # will get you repo updates git add . # will add files in your dir git add [dirname]/* # will add files under a new dir git commit -m “your comment“ # will commit your code to your changes git push # will push your code to a reposatory git pull […]

Git Fundamentals

Git Fundamentals

 

Topics To be Covered

Installation

2. Setup

3. Creating a Project

4. Checking the status of the repository

5. Making changes

6. Staging the changes

June 25th, 2018 | Category: GIT | Leave a comment

How Remove Files completely from git repository history

It is straight forward to remove a file from the current commit or HEAD but if you want remove entirely from the repository’s history then you need to run couple of commands.

It took some trial and error for me to find something that worked for me

[…]