Principles and Practices & Project Management 🖥
weekly assignaments💬
the purpose is to acquire skills in using a version control system such as Git, develop a website and begin to capture the ideas of the final project in visual form.
First and foremost, I set a soundtrack to accompany my work throughout the process(4.-"day one" by hanz zimmer is my favorite song on the soundtrack).
references link to start my website⬇
Links |
Function |
Git |
Git is a distributed version control system used to track changes in code files and coordinate work among multiple individuals in software development projects. |
Template
|
Templates are models I used to create my HTML page, simplifying the process by standardizing formats and enhancing efficiency in all aspects. |
Fabcloud
|
Fab Lab Cloud is a cloud-based platform for managing Fab Labs, enabling users to access and share designs, control machines, manage inventory, and collaborate on digital fabrication projects remotely. |
Visual studio code
|
Visual Studio Code is a Microsoft code editor used for programming and software development. It offers advanced editing features, Git integration, and high customization through extensions. |
Steps for create my git repository🚶♂️
Git commands: |
|
Function |
1.-git init |
⏩ |
initialize repository📟 |
2.-git clone |
⏩ |
copy repository💽 |
3.-git add . |
⏩ |
add all documents untracked🗂 |
4.-git commit -m "message" |
⏩ |
package📦 |
5.-git push |
⏩ |
upload to cloud🌥 |
6.-git status |
⏩ |
review pendient actions❗❓ |
7.-git config --global user.email "you@example.com" |
⏩ |
Configure your account by accessing the cloud.🔐 |
8.-git config --global user.name "Your Name" |
⏩ |
Enter your username.🗃🧞♂️ |
Commands that will be used for our terminal📟
command |
|
Function |
cd "folder name" |
⏩ |
Open folder📂 |
mkdir "folder name" |
⏩ |
Create folder🗂 |
ls |
⏩ |
Show directory🗄 |
cd .. |
⏩ |
back🔙 |