1. Project management
In week one, our Our main objective is to assess progress, highlighting achievements and opportunities for growth, and sharing the knowledge gained. To achieve this, we'll use Git to showcase our work throughout the course and HTML with Visual Studio to code the website and create its content.
Somethings about Git
Have you heard about Git? It's awesome because it lets you collaborate with others by sharing your work and accessing a server remotely.
On their website, they describe that:
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
In simple terms, Git is a version control system that we will use to manage course content. So, we will manage the different pieces of information, and version control will save the history of the current files.
To use this, you just need to learn a few simple commands:
Command | Description |
---|---|
git init | Creates a new repository locally. |
git clone | It is to download a file, copy it or duplicate it. |
git add [file] | Include the file in your next commit. |
git add . | Used to add all the files inside a folder. |
git commit | It is used to package what has been done. And you can create a point on a line in your process. |
git commit -m "[message]" | Commit all the staged files. |
git push | Your local changes have been sent to the online repository. |
git status | Check the status of the current branch to see if it has been modified or needs an update. |
When it comes to these guidelines, it is important to understand how to use them accurately. In my case, I followed these steps once I understood them:
- To begin, open Git CMD.
- Open the space in which you will work using the 'cd' command.
- Note: I used the desktop of my computer.
- Navigate to the Fab Academy repository.
- Note: A repository is a set of files with history. Is your current files and their history.
- Important: If you don't have a repository, you can easily create one by using the command 'git init'.
- Clone the HTTPS.
- To clone a repository in GitLab Fab Cloud, simply select 'Clone' and then choose 'Clone with HTTPS'. Copy the provided URL and use the command 'git clone' in Git to clone the repository.
- Open the cloned file using the 'cd' command.
- The next step is to open the cloned file.
- Note: Open the file in your computer.
- Then, eliminate the predetermined files.
- Note: Only if you use a template.
- Paste the template page archives that you have chosen.
- To attach all the files inside the folder, use the command 'git add .'
- Note: Remember that add with two points it’s to add all the files.
- Then, name the commit using the command ‘git commit -m “Name”’.
- Note: Make sure to choose a name that clearly describes the modifications that were implemented.
- Finally, execute the command 'git push' to reflect the changes in the cloud.
How to make a website and don’t die trying?
Breathe first and do not let so many codes stress you out. And begin with the start.
To develop my website, I use HTML and CSS with Visual Studio.
- HTML is the most basic building block of the Web. It defines the meaning and structure of web content.
- CSS is a stylesheet language used to describe the presentation of a document written in HTML. It describes how elements should be rendered on screen, on paper, in speech, or on other media
- Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications.
HTML tags
Openning tags | Closing tags | Description |
---|---|---|
< html > | < / html > |