GitPush With (Visual Studio) VS Code
Last Updated :
26 Jun, 2024
Visual Studio Code (VS Code) is a powerful and versatile code editor widely used by developers. One of its standout features is its seamless integration with Git, making version control very simple. In this article, we'll explore how to GitPush With (Visual Studio) VS Code.
Steps To Create And Add Git Repository in VS Code
Step 1: Open the VS code, then open a new terminal and create a new empty folder using this command
mkdir gfg
Go to this folder using the following command.
cd gfg
open terminalStep 2: Then open our folder new terminal and create new react project using this command
npx create-react-app gfgreact
create react projectStep 3: Then initialize with git repository using this command
git init
git initStep 4: Go to the react project and open src folder and open App.js file and add some code then
run this project using this command: npm start
import './App.css';
function App() {
return (
<div className="App">
<header className="App-header">
<h2>Hello GFG</h2>
</header>
</div>
);
}
export default App;
runStep 5: Return the vs code terminal and check the status of git repository using this command
git status
git StatusStep 6: Then add all changes in git using this command:
git add
Check the status using this command
git status
git add .
git statusStep 7: Then commit all changes using this command : git commit -m "change the app.js file" and check the status using this command
git status
commit all changesStep 8: These are the changes made in the local system but we want to upload the project which we created in your system to GitHub then follow the below steps to upload :
- Go to the GitHub
- then click your profile
- select your repositories folder
Go to GitHub
profile
select option
go to repositoryStep 9: Then click on new button and create new repository and give the name like GFGRepo and check that our repository is created successfully or not then copy the repository link.
new button
repo name
click this button
successfully
copy this linkStep 10: Then go to vs code terminal and get the remote of our git repository using this command
git remote add origin https://github.com/HerryVaghasiya/GFGRepo.git
get remoteStep 11: check that repository remote is success fully added or not using this command
git remote -v
Check our git repository branch using this command
git branch
Change the branch name master to main because GitHub change its default branch name master to main so rename our branch name using this command:
git branch -M main
Check branch name
git branch
check remote
check branch
change and check branch nameStep 12: Then push our code in GitHub repository using this command
git push -u origin main
(Note : -u means set upstream. If you want to work on the same project for a long time, there is a shortcut key that will set the branch name as default so that you don't have to give the same branch name every time. )
push the codeStep 13: Then Go to GitHub repository and refresh the page and check that our project is successfully pushed or not.
project successfully pushed
Similar Reads
Git Pull With (Visual Studio) VS Code
Version control systems like Git have become important tools for managing codebases efficiently. Git simplifies collaboration by allowing multiple developers to work on the same project simultaneously while keeping track of changes seamlessly. Visual Studio Code (VS Code), with its powerful features
2 min read
How to Link GitHub with Visual Studio?
Linking GitHub with Visual Studio allows you to manage your code repositories, collaborate with others, and streamline your development workflow directly from your IDE. Visual Studio provides integrated tools for cloning, creating, and managing GitHub repositories. Prerequisite:Visual Studio install
1 min read
How to Integrate Git Bash with Visual Studio Code?
prerequisitesGit Bash is an application that provides Git command line experience on the Operating System. It is a command-line shell for enabling git with the command line in the system. VSCode is a Text editor that provides support for development operations and version control systems. It provide
2 min read
How to Install GIT in Conda?
Anaconda is a free and open-source distribution of the programming languages Python and R programming languages for scientific computing, data processing, and data analytics. It includes Jupyter, Spyder, and a powerful CLI to manage the development environment. Git is a free, open-source, and most p
2 min read
How to Install Git with Spyder?
Projects in Spyder are integrated with the git version control system, this allows you to commit files and open them or the repository in the gitk GUI right from within Spyder. It should be noted that projects are optional and not imposed on users. You can enjoy all of Spyderâs functionality (sessio
2 min read
Is Our Code Secured in Git?
Git is an essential tool for managing and tracking code, but its widespread use also makes it a target for potential security threats. Ensuring the security of your code within Git repositories is very important whether youâre working on open-source projects, private business applications, or sensit
6 min read
How to Run JavaScript in Visual Studio?
To run JavaScript in Visual Studio, you can either use Node.js in the Terminal or the Code Runner extension. Both methods allow you to execute JavaScript code easily and efficiently within the Visual Studio environment.Using Node.js in TerminalNode.js is a JavaScript runtime that allows you to execu
2 min read
How to Push Code to Github using Pycharm?
Git is an open-source version control system. It means that whenever a developer develops some project (like an app or website) or something, he/she constantly updates it catering to the demands of users, technology, and whatsoever it maybe, Git is a version control system that lets you manage and k
2 min read
How to Run the Java Code in Git Bash?
Git Bash is a command-line interface that provides a Unix-like environment on Windows. You can use it to compile and run Java programs just as you would in traditional terminals on Linux or macOS. Step to Run Java Code in Git Bash:1. Install JavaMake sure you have Java installed on your Windows comp
2 min read
What is Git Clone?
Git, a distributed version control system, is widely used for tracking changes in source code during software development. One of the fundamental commands in Git is git clone. This command is important for developers to collaborate on projects by allowing them to create a local copy of a remote repo
5 min read