DEV Community

Nurlan TL
Nurlan TL

Posted on

GitHub Newbie - First repo roadmap (Nuxt 3)

Sample workflow to create Nuxt 3 project and its repository on GitHub and listing necessary git operations to start working in a git way.

Prerequisites: GitHub account, git installed locally, terminal, VSCode

Preparation

Create repository My-repo on GitHub.com. This will create new repository with README.md file and if necessary LICENSE file inside.

Open terminal and cd to the folder containing your projects, for example My-projects folder.

cd My-projects
Enter fullscreen mode Exit fullscreen mode

Clone remote repository to local machine using the web URL. Get this url on repositories GitHub page (code/local/HTTPS). It looks like https://github.com/MyName/My-repo.git. Go to local terminal and:

git clone https://github.com/MyName/My-repo.git
Enter fullscreen mode Exit fullscreen mode

This will create My-repo folder inside My-projects folder.

Next initialize our Nuxt 3 (or any other framework) you want:

npx nuxi@latest init My-repo --force
Enter fullscreen mode Exit fullscreen mode

--force option is to use existing folder.

Don't forget to refuse initializing repository as we already done that.

✔ Initialize git repository?
No
Enter fullscreen mode Exit fullscreen mode

Initializing Nuxt 3 creates all necessary files for default Nuxt project. Also Nuxt changes README.md file, and makes no changes to LICENSE file if it exists.

Perfect time to open this My-repo folder in VSCode.

Open VSCode integrated terminal. All commands to be run in my-projects/My-repo folder.

Now we have Remote Repository: The remote repository is the repository hosted on the Git server (e.g., GitHub). When you create a repository on the server, it becomes the remote repository. This repository contains the entire history of the project and serves as the central repository that multiple developers can collaborate on.

And we have Local Repository: The local repository is the copy of the repository that resides on your local machine. When you clone a repository from the remote server, Git creates a local copy of the entire repository, including all branches, commits, and files. This local repository is where you do your work and make changes to the project.

There is also .gitignore file which specifies intentionally untracked files that Git should ignore. This allows you to avoid cluttering your repository with files that are generated during the development process, such as compiled binaries, log files, and dependencies.

We done with preparation steps.

Git starting kit

Commands to know:

git status
Enter fullscreen mode Exit fullscreen mode

The git status command is used to display the current state of the repository, including information about tracked and untracked files, changes that have been staged or not staged for commit, and the branch you're currently on.

git branch
Enter fullscreen mode Exit fullscreen mode

Running this command without any additional arguments will list all the local branches in your repository. The currently checked out branch will be indicated with an asterisk (*) next to its name.

git branch -a
Enter fullscreen mode Exit fullscreen mode

This will list both local and remote branches. Remote branches are prefixed with the name of the remote repository (e.g., origin/main, origin/feature-branch).:
* main
remotes/origin/HEAD -> origin/main
remotes/origin/main

git branch --show-current
Enter fullscreen mode Exit fullscreen mode

This command will display the name of the local branch that you are currently on:
main

git remote show origin
Enter fullscreen mode Exit fullscreen mode

This command will display detailed information about the remote repository, including the default branch and its name. If the default branch is "main", then your local "main" branch is indeed the same as the "main" branch on the remote repository:

* remote origin
Fetch URL: https://github.com/MyName/My-repo.git
Push URL: https://github.com/MyName/My-repo.git
HEAD branch: main
Remote branch:
main tracked
Local branch configured for 'git pull':
main merges with remote main
Local ref configured for 'git push':
main pushes to main (fast-forwardable)

Authenticate

To work with remote branch we need to authenticate your GitHub account when attempting to push changes to the remote repository. Simplest way to do it is to create a personal access token in your GitHub account settings and use the token to access GitHub adding it to your existing remote URL.

git remote set-url origin https://TOKEN@github.com/MyName/My-repo.git
Enter fullscreen mode Exit fullscreen mode

This will add TOKEN to your remote repository URL and you can work with GitHub.

Commit and push

Now we need to commit and push our initial Nuxt setup to local repository. First add newly created files to repository:

git add .
Enter fullscreen mode Exit fullscreen mode

Then we commit changes to local repo:

git commit -m "Initiating Nuxt project"
Enter fullscreen mode Exit fullscreen mode

Now our local repository contains all our changes.

git push origin main:main
Enter fullscreen mode Exit fullscreen mode

Thats all initial steps. Now we can see our Nuxt files on GitHab.com. We have one main branch on remote repo and one main branch on local repo.

Branch

It is time to make some changes to the project: clearing sample files and configuring project. We now create branch for our changes.

Before creating a new branch, it's a good idea to ensure that your local "main" branch is up-to-date with the remote "main" branch. You can do this by pulling any changes from the remote repository:

git pull origin main
Enter fullscreen mode Exit fullscreen mode

Next, create a new branch for the task of clearing the initial sample files and configuring. You can do this using the following command:

git checkout -b clear-and-config
Enter fullscreen mode Exit fullscreen mode

Switched to a new branch 'clear-and-config'

Now we can see our status:

git status
Enter fullscreen mode Exit fullscreen mode

On branch clear-and-config
nothing to commit, working tree clean
admin@iMac My-repo % git branch
* clear-and-config
main

And here we can start working with code. As intended we cleared initial files and make configuration changes.

After that:

git add .
Enter fullscreen mode Exit fullscreen mode
git commit -m "Clear initial sample files and configuring"
Enter fullscreen mode Exit fullscreen mode

Then:

git push -u origin clear-and-config
Enter fullscreen mode Exit fullscreen mode

You are pushing the new branch named "clear-and-config" to the remote repository named "origin". This command does not affect the "main" branch on the remote repository.

The -u option, short for --set-upstream, tells Git to set up tracking between the local branch and the remote branch. This means that future git pull and git push commands will automatically know where to pull from and push to without needing to specify the remote and branch explicitly.

New branch "clear-and-config" will be created on the remote repository (if it doesn't already exist) and set up to track the local branch. This means that any future pushes from the local "clear-and-config" branch will be directed to the corresponding branch on the remote repository.

You don't need to create a remote "clear-and-config" branch separately. Git handles the creation of the remote branch for you when you push the local branch for the first time.

Merge or rebase

Once your changes are ready to be integrated into the main branch, you can merge them using git merge or rebase them using git rebase, depending on your preferred workflow and the requirements of your project.

Merge

First, switch to the branch you want to merge changes into. For example, if you want to merge changes into the "main" branch:

git checkout main
Enter fullscreen mode Exit fullscreen mode

Next, merge the changes from the feature branch (in this case, "clear-and-config") into the main branch:

git merge clear-and-config
Enter fullscreen mode Exit fullscreen mode

If Git detects any conflicts between the changes in the two branches, it will pause the merge process and ask you to resolve the conflicts manually. You can use a text editor or a merge tool to resolve conflicts.

Push Changes :

git push origin main
Enter fullscreen mode Exit fullscreen mode

After completing these steps, the changes from your feature branch will be merged into the main branch, and both branches will be up-to-date with each other.

Rebase

Git rebase is another way to integrate changes from one branch into another, similar to merging. However, it operates differently under the hood and can result in a cleaner, more linear history compared to merging.

When you rebase a branch onto another branch, Git takes the entire series of commits from the branch being rebased and "replays" them on top of the target branch. This essentially rewrites the commit history of the rebased branch, making it appear as if the changes were made directly on top of the target branch.

Switch to the branch you want to rebase. For example, if you want to rebase the "clear-and-config" branch onto the "main" branch:

git checkout clear-and-config
Enter fullscreen mode Exit fullscreen mode

Rebase onto the Target Branch:
Next, rebase the current branch onto the target branch (e.g., "main"):

bash

git rebase main
Enter fullscreen mode Exit fullscreen mode

Resolve any Rebase Conflicts (if necessary):
Similar to merging, if Git encounters any conflicts during the rebase process, it will pause and ask you to resolve them manually.

Continue the Rebase:

git rebase --continue
Enter fullscreen mode Exit fullscreen mode

After resolving conflicts, you can continue the rebase by using git rebase --continue. If you encounter any conflicts during the rebase, you'll need to resolve them and continue the process until all commits have been replayed.

The rebase operation modifies the commit history of the clear-and-config branch locally. It takes the commits from the clear-and-config branch and replays them on top of the main branch, essentially rewriting the commit history of the clear-and-config branch.

The main branch on your local machine remains unchanged during the rebase operation. The changes from the clear-and-config branch are applied on top of the main branch, but the main branch itself does not undergo any direct modifications.

After completing the rebase locally and resolving any conflicts, you push the changes from the clear-and-config branch to the remote repository. This updates the clear-and-config branch on the remote repository with the rebased commits, effectively incorporating them into the commit history of the main branch on the remote repository.

In summary, the rebase operation affects the commit history of the clear-and-config branch locally, while the main branch remains unaffected until you push the changes to the remote repository.

git push origin clear-and-config --force
Enter fullscreen mode Exit fullscreen mode

This command will update the remote clear-and-config branch with the rebased commits, incorporating them into the commit history of the main branch on the remote repository.

It's important to use the --force option when pushing after a rebase to overwrite the existing history of the remote branch with the rewritten history resulting from the rebase. However, use force-push with caution, especially if others are working with the same branch, as it can cause confusion and potentially overwrite their work.

Final

That is it. It is very simplified workflow for single developer who don't change main until feature branch is done and merged into main. For complex scenarios read more. Good luck.

Top comments (0)