#git clone
Explore tagged Tumblr posts
castaawaay · 27 days ago
Text
WHY DO I LOVE GITHUB SO MICH
2 notes · View notes
vivektech · 4 months ago
Text
Tumblr media
Use Git if: ✅ You need speed and distributed development ✅ You want better branching and merging ✅ You work offline frequently
1 note · View note
canisalbus · 2 years ago
Note
I may be stupid and you might already have one but if not have you considered making a WEBTOON about the 2 best doggos as a story about their weird and wonderful lives would be great
Not stupid at all! I've definitely thought about it a lot, but comic making is hard work, it's extremely time consuming (either that or my method of drawing is just absurdly inefficient. Probably both). I don't think it's something I could just pick up and realistically fit into my daily life, at least not at the moment. I'm just one person with very limited time and resources. Sorry!
221 notes · View notes
gammaraydeath · 9 months ago
Text
mirror match.......
Tumblr media
2 notes · View notes
ettadunham · 9 months ago
Text
and fuck you too
Tumblr media
2 notes · View notes
macbethz · 1 year ago
Text
i feel like a fraud in my new job i just say video game words and people think i know what im talking about. commits. post-processing. render pipeline. i can say these things
6 notes · View notes
unbids · 1 month ago
Text
anyway i can do anything
Tumblr media
0 notes
rafaeltheraven · 1 year ago
Text
You're going to a hardware store and complaining that there's no ready-made furniture.
Tumblr media
Facts tho
1K notes · View notes
rabatfirstsight · 1 year ago
Text
git clone error:
SSL certificate problem: unable to get local issuer certificate
fix:
git config --global http.sslVerify false
0 notes
gammadoppler · 2 years ago
Text
if your first step to updating something is "make sure you have python intsalled" you should be instaleld inside of a python
1 note · View note
lolmanthecat · 1 year ago
Text
The WTF my brain scream when I understood what I had read.
Tumblr media
1K notes · View notes
cool-retro-term-official · 2 months ago
Text
Github has it for you. It's literally on gitlab. Just go on sourceforge and download the source code. Just git clone it from my gitea ! Right. On. Gitbucket ! Just click your way to my Kallithea and download it ! It's on sourcehut now !
516 notes · View notes
codingquill · 2 months ago
Text
Tumblr media
Welcome back, coding enthusiasts! Today we'll talk about Git & Github , the must-know duo for any modern developer. Whether you're just starting out or need a refresher, this guide will walk you through everything from setup to intermediate-level use. Let’s jump in!
What is Git?
Git is a version control system. It helps you as a developer:
Track changes in your codebase, so if anything breaks, you can go back to a previous version. (Trust me, this happens more often than you’d think!)
Collaborate with others : whether you're working on a team project or contributing to an open-source repo, Git helps manage multiple versions of a project.
In short, Git allows you to work smarter, not harder. Developers who aren't familiar with the basics of Git? Let’s just say they’re missing a key tool in their toolkit.
What is Github ?
GitHub is a web-based platform that uses Git for version control and collaboration. It provides an interface to manage your repositories, track bugs, request new features, and much more. Think of it as a place where your Git repositories live, and where real teamwork happens. You can collaborate, share your code, and contribute to other projects, all while keeping everything well-organized.
Git & Github : not the same thing !
Git is the tool you use to create repositories and manage code on your local machine while GitHub is the platform where you host those repositories and collaborate with others. You can also host Git repositories on other platforms like GitLab and BitBucket, but GitHub is the most popular.
Installing Git (Windows, Linux, and macOS Users)
You can go ahead and download Git for your platform from (git-scm.com)
Using Git
You can use Git either through the command line (Terminal) or through a GUI. However, as a developer, it’s highly recommended to learn the terminal approach. Why? Because it’s more efficient, and understanding the commands will give you a better grasp of how Git works under the hood.
GitWorkflow
Git operates in several key areas:
Working directory (on your local machine)
Staging area (where changes are prepared to be committed)
Local repository (stored in the hidden .git directory in your project)
Remote repository (the version of the project stored on GitHub or other hosting platforms)
Let’s look at the basic commands that move code between these areas:
git init: Initializes a Git repository in your project directory, creating the .git folder.
git add: Adds your files to the staging area, where they’re prepared for committing.
git commit: Commits your staged files to your local repository.
git log: Shows the history of commits.
git push: Pushes your changes to the remote repository (like GitHub).
git pull: Pulls changes from the remote repository into your working directory.
git clone: Clones a remote repository to your local machine, maintaining the connection to the remote repo.
Branching and merging
When working in a team, it’s important to never mess up the main branch (often called master or main). This is the core of your project, and it's essential to keep it stable.
To do this, we branch out for new features or bug fixes. This way, you can make changes without affecting the main project until you’re ready to merge. Only merge your work back into the main branch once you're confident that it’s ready to go.
Getting Started: From Installation to Intermediate
Now, let’s go step-by-step through the process of using Git and GitHub from installation to pushing your first project.
Configuring Git
After installing Git, you’ll need to tell Git your name and email. This helps Git keep track of who made each change. To do this, run:
Tumblr media
Master vs. Main Branch
By default, Git used to name the default branch master, but GitHub switched it to main for inclusivity reasons. To avoid confusion, check your default branch:
Tumblr media
Pushing Changes to GitHub
Let’s go through an example of pushing your changes to GitHub.
First, initialize Git in your project directory:
Tumblr media
Then to get the ‘untracked files’ , the files that we haven’t added yet to our staging area , we run the command
Tumblr media
Now that you’ve guessed it we’re gonna run the git add command , you can add your files individually by running git add name or all at once like I did here
Tumblr media
And finally it's time to commit our file to the local repository
Tumblr media
Now, create a new repository on GitHub (it’s easy , just follow these instructions along with me)
Assuming you already created your github account you’ll go to this link and change username by your actual username : https://github.com/username?tab=repositories , then follow these instructions :
Tumblr media Tumblr media
You can add a name and choose wether you repo can be public or private for now and forget about everything else for now.
Tumblr media
Once your repository created on github , you’ll get this :
Tumblr media
As you might’ve noticed, we’ve already run all these commands , all what’s left for us to do is to push our files from our local repository to our remote repository , so let’s go ahead and do that
Tumblr media
And just like this we have successfully pushed our files to the remote repository
Here, you can see the default branch main, the total number of branches, your latest commit message along with how long ago it was made, and the number of commits you've made on that branch.
Tumblr media
Now what is a Readme file ?
A README file is a markdown file where you can add any relevant information about your code or the specific functionality in a particular branch—since each branch can have its own README.
It also serves as a guide for anyone who clones your repository, showing them exactly how to use it.
You can add a README from this button:
Tumblr media
Or, you can create it using a command and push it manually:
Tumblr media
But for the sake of demonstrating how to pull content from a remote repository, we’re going with the first option:
Tumblr media
Once that’s done, it gets added to the repository just like any other file—with a commit message and timestamp.
However, the README file isn’t on my local machine yet, so I’ll run the git pull command:
Tumblr media
Now everything is up to date. And this is just the tiniest example of how you can pull content from your remote repository.
What is .gitignore file ?
Sometimes, you don’t want to push everything to GitHub—especially sensitive files like environment variables or API keys. These shouldn’t be shared publicly. In fact, GitHub might even send you a warning email if you do:
Tumblr media
To avoid this, you should create a .gitignore file, like this:
Tumblr media
Any file listed in .gitignore will not be pushed to GitHub. So you’re all set!
Cloning
When you want to copy a GitHub repository to your local machine (aka "clone" it), you have two main options:
Clone using HTTPS: This is the most straightforward method. You just copy the HTTPS link from GitHub and run:
Tumblr media
It's simple, doesn’t require extra setup, and works well for most users. But each time you push or pull, GitHub may ask for your username and password (or personal access token if you've enabled 2FA).
But if you wanna clone using ssh , you’ll need to know a bit more about ssh keys , so let’s talk about that.
Clone using SSH (Secure Shell): This method uses SSH keys for authentication. Once set up, it’s more secure and doesn't prompt you for credentials every time. Here's how it works:
So what is an SSH key, actually?
Think of SSH keys as a digital handshake between your computer and GitHub.
Your computer generates a key pair:
A private key (stored safely on your machine)
A public key (shared with GitHub)
When you try to access GitHub via SSH, GitHub checks if the public key you've registered matches the private key on your machine.
If they match, you're in — no password prompts needed.
Steps to set up SSH with GitHub:
Generate your SSH key:
Tumblr media
2. Start the SSH agent and add your key:
Tumblr media
3. Copy your public key:
Tumblr media
Then copy the output to your clipboard.
Add it to your GitHub account:
Go to GitHub → Settings → SSH and GPG keys
Click New SSH key
Paste your public key and save.
5. Now you'll be able to clone using SSH like this:
Tumblr media
From now on, any interaction with GitHub over SSH will just work — no password typing, just smooth encrypted magic.
And there you have it ! Until next time — happy coding, and may your merges always be conflict-free! ✨👩‍💻👨‍💻
93 notes · View notes
21angryfrogs · 1 year ago
Text
Inscryption Act 2 Dashboard Simulator
Tumblr media
🔍 gadgetinspector Follow
i think we should all start unionizing actually.
🚬 shrimps.is.cards Follow
yer just mad cause ya didnt git a raise this month n i did.
#as the boss'd say: L + ratio
15 notes
Tumblr media
☁️ dyke-mage Follow
just found out that rebecha is 26??? she should be at the club...
🔧 trans.on.a.mission Follow
"the club" is a state of mind i'm in when clobbering whoever keeps breaking my bridge. woof.
#im serious #when i find you its on sight
1,905 notes
Tumblr media
🦦 iceekaycee Follow
Tumblr media
for those not caught up on the old man yaoi lore...
#that makes 3 this month... #what is wrong with them
21,039 notes
Tumblr media
🗝 wizstim Follow
⚠️ PSA!!!! ⚠️ guys you really need to stop telling people to k/ll themselves!! you never know what people are going through, and it can be really bad for people's mental health!!! 🍯 gooart Follow
^^^ SOME OF YOU SHOULD READ THIS OVER A FEW TIMES!
☁️ dyke-mage Follow
kys beam. get them, boys.
🕯the.melter.official Follow
kill yourself.
🚬 shrimps.is.cards Follow
kill yerself.
🎣 fishfearme Follow
krill self. now.
7,192 notes
Tumblr media
🕯the.melter.official Follow
currently living in a peaceful state of tumblr fame where i'm popular enough to have to add "official" to the end of my blog name but not popular enough to have an evil shadow clone of myself.
🌋 the.melted.official Follow
HELP ME SOMEONE PLEASE DEAR FUCKING GOD LET ME OUT OF HERE
🕯the.melter.official Follow
... haha... did anyone else hear that....?
2,071 notes
Tumblr media
🕸 wellitsgolly-deactivated277457
Tumblr media
🔍 gadgetinspector Follow
how did she say that
92,644 notes
Tumblr media
🦦 iceekaycee Follow
🍯 gooart Follow
does anyone else find it kind of troubling how many people are voting and campaigning against THEIR OWN EMPLOYERS?? i mean sure, sometimes they can be cruel, but we still owe a lot to them!!
☁️ dyke-mage Follow
grimora sweep.
🕯the.melter.official Follow
grimora sweep.
🪄 magikificus Follow
grimora sweep.
🔍 gadgetinspector Follow
grimora sweeHey Who Was That?
🦦 iceekaycee Follow
SCRYBES FOUND THE POST, EVERYONE SCATTER
#I DIDNT EVEN REALIZE THEY WERE ON THIS SITE??? #WHOOPS
276,651 notes
Tumblr media
💾 po.tothethird Follow
for april fools i'm deleting this entire game. sayonara you insubordinate shits.
1,263,333 notes
161 notes · View notes
snowshinobi · 5 months ago
Text
huh
Tumblr media
git won't let me tell her i love her 😔
Tumblr media
1 note · View note
scannys-back · 3 months ago
Note
(Sean appears right outside of Ethan's home, knocking on the door once again as he stands there waiting)
Yo, little brother!
It's that time again! Both our mods know what we want so let's go back to that place!
I'm certain you'll be able to beat my ass if you're gonna get serious!
*Ethan walks outside slowly and teleports them both back to the merged digital location and turns death off again*
Alright then.
*Ethan spawns in something.*
Tumblr media
Trollos.
Let's start simple.
*Ethan has equipped the THE_NUT_BUSTER*
*Ethan duplicates it*
Tumblr media
Have fun.
*Ethan starts making many, many, many, MANY clones of himself all with with their own hammer's.*
Hey fun fact!
Tumblr media Tumblr media
You're about to get dunked on. M80.
Git fuk'd.
*the entirety of everything turns into... THIS abomination of a ENDLESSLY moving hell of Scannys face.*
Tumblr media
*all of the clones raise their hammers and try to bash Sean with them, as some clones stun lock Sean up close with them all commiting various combo's from various fighting games, not even letting Sean hit the ground.*
18 notes · View notes