<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: UltimateWeber</title>
    <description>The latest articles on DEV Community by UltimateWeber (@ultimateweber).</description>
    <link>https://dev.to/ultimateweber</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1157673%2Fd4a55653-c526-4863-a910-dbd4d787e09a.png</url>
      <title>DEV Community: UltimateWeber</title>
      <link>https://dev.to/ultimateweber</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ultimateweber"/>
    <language>en</language>
    <item>
      <title>THE TOOLS I LEARNT DURING MY FIRST TWO WEEKS OF LEARNING PROGRAMMING</title>
      <dc:creator>UltimateWeber</dc:creator>
      <pubDate>Thu, 14 Sep 2023 21:36:09 +0000</pubDate>
      <link>https://dev.to/ultimateweber/the-tools-i-learnt-during-my-first-two-weeks-of-learning-programming-2baa</link>
      <guid>https://dev.to/ultimateweber/the-tools-i-learnt-during-my-first-two-weeks-of-learning-programming-2baa</guid>
      <description>&lt;p&gt;&lt;strong&gt;FIRSTLY&lt;/strong&gt;,I was first introduced to BASIC COMMAND LINE TOOLS  and it FUNCTIONS and with which I will be listing them below right here and there functions which is really helping me in many situations. &lt;br&gt;
They include the following:&lt;br&gt;
cd: Change directory.&lt;br&gt;
ls or dir (Windows): List files and directories in the current directory.&lt;br&gt;
pwd or echo %cd% (Windows): Print the current working directory.&lt;br&gt;
mkdir: Create a new directory.&lt;br&gt;
touch or echo &amp;gt; filename (Windows): Create an empty file.&lt;br&gt;
rm or del (Windows): Remove files and directories.&lt;br&gt;
mv or move (Windows): Move or rename files and directories.&lt;br&gt;
cp or copy (Windows): Copy files and directories.&lt;br&gt;
Basic Git Commands&lt;br&gt;
git init :&lt;br&gt;
git status&lt;br&gt;
git add .&lt;br&gt;
git commit -m "commit message"&lt;br&gt;
git remote add origin {repo_url}&lt;br&gt;
git push -u origin master&lt;br&gt;
  &lt;br&gt;
&lt;strong&gt;SECONDLY&lt;/strong&gt;, I was introduced to BASIC GIT COMMAND and their FUNCTIONS which I will also be listing right here.&lt;br&gt;
They include: &lt;/p&gt;

&lt;p&gt;git init: Initializes a new Git repository in the current directory.&lt;br&gt;
git clone {repository_url}: Creates a copy of a remote Git repository on your&lt;br&gt;
local machine.&lt;br&gt;
git add . or git add {files(s)}: Stages changes for commit. You can specify&lt;br&gt;
individual files or use '.' to stage all changes.&lt;br&gt;
git commit -m "{commit message}": Commits the staged changes to the repository&lt;br&gt;
with a descriptive message.&lt;br&gt;
git status: Shows the status of your working directory, including untracked files&lt;br&gt;
and changes ready to be committed.&lt;br&gt;
git log: Displays a history of commits in the current branch, including commit&lt;br&gt;
messages, authors, and timestamps.&lt;br&gt;
git branch: Lists all branches in the repository and highlights the current&lt;br&gt;
branch.&lt;br&gt;
git checkout {branchname}: Switches to a different branch. You can also use this&lt;br&gt;
command to create a new branch.&lt;br&gt;
git merge {branchname}: Combines the changes from one branch into the current&lt;br&gt;
branch.&lt;br&gt;
git pull: Fetches changes from a remote repository and merges them into the&lt;br&gt;
current branch.&lt;br&gt;
git push: Pushes your local changes to a remote repository.&lt;br&gt;
git remote -v: Lists all remote repositories configured for the current project.&lt;br&gt;
git fetch: Downloads changes from a remote repository but does not merge them&lt;br&gt;
into your local branch.&lt;br&gt;
git reset {file}: Unstages changes in the specified file, or you can use --soft,&lt;br&gt;
--mixed, or --hard options to reset commits.&lt;br&gt;
git rm {file}: Removes a file from the working directory and stages the deletion for the next commit.&lt;br&gt;
git stash: Temporarily saves changes that are not ready to be committed, allowing&lt;br&gt;
you to switch branches or perform other operations.&lt;br&gt;
git tag {tagname}: Creates a new tag for a specific commit, often used for&lt;br&gt;
marking releases.&lt;br&gt;
git remote add {name} {url}: Adds a new remote repository with a specified name&lt;br&gt;
and URL.&lt;br&gt;
name can be origin&lt;br&gt;
git --help or git  --help for more detailed information on each command.&lt;/p&gt;

&lt;p&gt;With this little things above I've gained more knowledge on programming and more of GIT also .&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>html</category>
      <category>github</category>
      <category>coding</category>
    </item>
  </channel>
</rss>
