Skip to main content

Adding a code repository to git hub

1. Create a new Repository in github. and get the git repository url using clone button of the repository.

2. Open cmd

3. Change the current working directory to your local project.

4. Initialize the local directory as the git repository.
git init

5.Add the files in your new local repository. This stages that them for the first commit
git add .
# Adds the files in the local repository and stages them for commit. To unstage a file, use 'git reset HEAD YOUR-FILE'.

6.Commit the files:
git commit -m "First commit"
# Commits the tracked changes and prepares them to be pushed to a remote repository. To remove this commit and modify the file, use 'git reset --soft HEAD~1' and commit and add the file again.

7.At the top of your GitHub repository's Quick Setup page, click  to copy the remote repository UR


8. In the Command prompt, add the URL for the remote repository where your local repository will be pushed.
git remote add origin remote repository URL
# Sets the new remote
git remote -v
# Verifies the new remote URL
9.Push the changes in your local repository to GitHub.

git push origin master
# Pushes the changes in your local repository up to the remote repository you specified as the origin
10 .Pushing changes forcefully in your local repository to GitHub.

git push origin master --force
# Pushes the changes in your local repository up to the remote repository you specified as the origin

Comments

Popular posts from this blog

How to check if JWT Token is Tampered ?

JWT Tokens has three parts: Header Pay Load Signature Header includes the encryption algorithm and token type. e.g: {    "alg" : "HS256",    "typ" : "JWT" } Signature is created using base64url encoding the header and payload and concatenating them with a period(.) as a seperator. Take the signature of the token and decode it from base64, take the encryption algorithm from the header and generate the signature for the base64 encoded header + '.' + base64 encoded payload. If the signature received and calculated are matching then nobody has tampered the JWT. - Mayank Gupta

15404 error in SQL not able to create new DB diagram

In SQL Server Management Studio do the following: Right Click on your database, choose properties Go to the Options Page In the Drop down at right labeled "Compatibility Level" choose "SQL Server 2005(90)" 3-1. choose "SQL Server 2008" if you receive a comparability error. Go to the Files Page Enter "sa" in the owner textbox. 5-1 or click on the ellipses(...) and choose a rightful owner. Hit OK after doing this, You will now be able to access the Database Diagrams.

Scaffolding Angular App & using ag-grid

Below code needs to run in node window to scaffold and Angular App. npm install -g @angular/cli ng new my-app --style scss cd my-app ng serve Below code needs to run to install Angular Grid npm install --save ag-grid ag-grid-angular ref: https://www.ag-grid.com/angular-getting-started/