How to Create a GitHub Repository for Your Website Tabby Mungai, October 4, 2023October 5, 2023 GitHub started on 19th October 2007 and later launched in April 2008. When github started it was able to provide developers with the option of hosting code securely in addition to managing commits in an appropriate manner. Later github was adopted to manage open source and git hosting became a viable option where paid subscriptions enabled projects to be profitable. GitHub enables an individual to create, store, change, merge as well as collaborate on code or files. Therefore, when you create a new website and you require a secure place to store it, github is the most suitable avenue for storage. In regards to Github pricing you may wonder, are GitHub actions free? The good news is that GitHub actions are free for standard GitHub-hosted runners within public repositories as well as self-hosted runners. However, for private repositories each GitHub account receives a specific amount of free minutes along with storage GitHub-hosted runners based on the account’s plan. Another concern one may have regard safety and you may ask yourself, are github files safe? GitHub is committed to ensuring privacy to developers in addition to a high standard of privacy protection to all customers and developers. GitHub applies stringent individual protection to all GitHub users on a global platform irrespective of the country. Can GitHub have viruses? The simple answer is NO, however, GitHub may abuse the platform and host malware but this won’t last long as it gets reported to GitHub and they take this particular content down. Beginners may require to know how GitHub works. GitHub works by allowing a collaborative interface where multiple users have the capability of working together simultaneously on the same project and the collaboration requires cross-team approval for pull requests. Additionally, GitHub allows and encourages collaboration within design teams. In this blog we are going to undertake a mini GitHub tutorial on creating a GitHub repository for your website. Step 1: Create a GitHub Account If you don’t have a GitHub account you need ton create one. Using you browser search GitHub and click on the “Join GitHub” option and fill in your details. Step 2: Install GitHub App on Your Desktop The next step require you to install the GitHub App on to your desktop. Visit the download page for GitHub Desktop, choose the download suitable for your operating systems. Step 3: Create GitHub Repository for the Website Application Step 4: Copy Website Files to GitHub Repository Open website project’s working folder, where all the website files and folders. Find the newly created repository “Geviton-simple-website” folder. Copy files from the the working file to the repository by pasting the file copies into the repository folder. After pasting the files into your repository folder, the GitHub Desktop app should display the files in the “change” panel on the left of the app window. Once the folders are within the local repository folder you are ready to save changes to the repository. On GitHub, saved changes are called commits. Each time you commit changes you must make a comment describing your changes. To commit you changes, add a comment in the field that says “summary” and any additional information you would like to include in the field in “Description” in the bottom left corner of the Desktop App. Click the blue button “commit to master” located below the text fields. This action save the changes mode to the “main” branch of your project. Step 5: Push Committed files to GitHub Programming
Programming How Create a Tic-Tac-Toe Game Using Python October 6, 2023October 9, 2023 Many say that tic tac toe is impossible to win. However, this does not diminish the fact that tic tac toe to play is highly nostalgic. Creating a tic tac toe Read More
Programming How To Create A Web Application Database September 27, 2023October 3, 2023 A database is generally a collection of information that one can store within a centralized location. Therefore, creating a database with python can be instrumental in allowing user input data to a given website. Read More
Programming Coding: How To Start Your Journey September 11, 2023September 11, 2023 Coding translating instructions from our language to computer’s language. Coding is regarded as a modern language that enables individuals to communicate instructions to device and guide the operation process. Read More