index.html 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <!DOCTYPE html>
  2. <html lang="en-us">
  3. <head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=51237&amp;path=livereload" data-no-instant defer></script>
  4. <title>
  5. Posts | codeskraps
  6. </title>
  7. <meta http-equiv="content-type" content="text/html; charset=utf-8">
  8. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  9. <meta name="description" content="Your website description">
  10. <meta name="generator" content="Hugo 0.134.3">
  11. <link rel="canonical" href="http://localhost:51237/post/" >
  12. <link href="http://localhost:51237/post/index.xml" rel="alternate" type="application/rss+xml" title="codeskraps" >
  13. <link href="http://localhost:51237/post/index.xml" rel="feed" type="application/rss+xml" title="codeskraps" >
  14. <link href="/css/style.min.ee0d47e4d4346c71a65a9e873108c81ffae54d60a2fc2338f6df394eb4b25a82.css" rel="stylesheet">
  15. </head>
  16. <body>
  17. <div class="flexWrapper">
  18. <header class="headerWrapper">
  19. <div class="header">
  20. <div>
  21. <a class="terminal" href="http://localhost:51237/">
  22. <span>me@codeskraps.com ~ $</span>
  23. </a>
  24. </div>
  25. <input class="side-menu" type="checkbox" id="side-menu">
  26. <label class="hamb" for="side-menu"><span class="hamb-line"></span></label>
  27. <nav class="headerLinks">
  28. <ul>
  29. <li>
  30. <a href="http://localhost:51237/projects/" title="" >
  31. ~/projects</a>
  32. </li>
  33. <li>
  34. <a href="http://localhost:51237/about/" title="" >
  35. ~/about</a>
  36. </li>
  37. <li>
  38. <a href="http://localhost:51237/posts/" title="" >
  39. ~/posts</a>
  40. </li>
  41. </ul>
  42. </nav>
  43. </div>
  44. </header>
  45. <div class="content">
  46. <main class="main">
  47. <div>
  48. <div class="listHeader">
  49. <h1>Posts</h1>
  50. </div>
  51. <div>
  52. <a class="postListLink" href="http://localhost:51237/post/gitignore_not_working/">
  53. <div class="postListItem" role="listitem">
  54. <div class="postHeader">
  55. <span class="postTitle">When .gitignore Doesnt Seem to Work: A Quick Fix</span>
  56. <time class="postDate" datetime="2024-10-02">October 2, 2024</time>
  57. </div>
  58. <div class="postExcerpt">
  59. <p><p>As developers, we&rsquo;ve all been there. You&rsquo;ve added a file or folder to your <code>.gitignore</code>, but Git keeps tracking it anyway. What gives? Let&rsquo;s dive into why this happens and how to fix it.</p>
  60. <h2 id="the-problem">The Problem</h2>
  61. <p>You&rsquo;ve added a file or directory to your <code>.gitignore</code>, but Git still tracks it. You might be thinking, &ldquo;Hey Git, I told you to ignore this!&rdquo;</p>
  62. <h2 id="why-it-happens">Why It Happens</h2>
  63. <p>Here&rsquo;s the catch: the <code>.gitignore</code> file only prevents untracked files from being added to the set of tracked files. It doesn&rsquo;t magically remove files that are already being tracked by Git.</p></p>
  64. </div>
  65. </div>
  66. </a>
  67. </div>
  68. </div>
  69. </main>
  70. </div>
  71. <footer class="footer">
  72. <span>Built with <a href="https://gohugo.io" class="footerLink">Hugo</a> and <a href="https://github.com/LordMathis/hugo-theme-nightfall" class="footerLink">Nightfall</a> theme</span>
  73. </footer>
  74. </div>
  75. </body>
  76. </html>