1. Project management

This week I worked on defining my final project idea and started to getting used to the documentation process.

What's GIT?

GitLab is a web-based Git repository that allows software development teams to plan, code, test, deploy and monitor product changes in one place. Git is a source code versioning system that allows you to track changes and push or pull changes using remote resources.


What's Visual Studio Code?

Visual Studio Code is a streamlined code editor with support for development operations like debugging, task running, and version control. It aims to provide just the tools a developer needs for a quick code-build-debug cycle

Code programming for the website

For the programming of the webiste I used Visual Studio Code which is a code editor software and we were provided with a template from our instructors and i think most of the lab in puebla uses the template provided by our instructors but Im going to modify the code for the website to make it different but I haven't done so yet as I am new to html and im not the best at programming so Im still getting used to the commands for programming it and customizing it.

How to make a repository


First we will download git bash which is a an application for Microsoft Windows environments which provides an emulation layer for a Git command line experience so it allows you to use git in your device then we will

    1. open it.
      Navigate to the root directory of your project using cd.
      Initialize the local directory as a Git repository. By default, the initial branch is called main.
      If you’re using Git 2.28.0 or a later version, you can set the name of the default branch using -b.
      git init -b main
      git init && git symbolic-ref HEAD refs/heads/main
      Add the files in your new local repository. This stages 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'. Commit the files that you've staged in your local repository.

  • MORE ABOUT ME

    If you want to now more about me click here


    Conclusion

    It isn´t dificult to create a repository for a web page but it is dificult to customize a page already made without proper knowldedge of how the website works.